Skip to content

Commit 37306c8

Browse files
author
Alex Meadows
committed
process_tracker_python-100 Add source/source object character set
🐛 Fixed issue where file path for config file was not setting correctly Issue was found where if the config file was named anything but 'process_tracker_config.ini' it would try to append that to the end. Have added a new filter to ensure that any file that ends with '.ini' can be accepted.
1 parent 0911486 commit 37306c8

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ before_script:
1515
- mkdir $HOME/.process_tracker
1616
- if [[ ! -z "$DB" ]]; then mv configs/${DB}_config.ini $HOME/.process_tracker/process_tracker_config.ini; fi
1717
- cp configs/process_tracker_config_dev.ini $HOME/.process_tracker/process_tracker_config_dev.ini
18+
- mkdir /tmp/testing
1819
- cp configs/process_tracker_config_dev.ini /tmp/testing/process_tracker_config_dev.ini
1920
- if [[ "$DB" == "postgres" ]]; then psql -f dbscripts/postgresql_account_create.sql -U postgres; fi
2021
- if [[ "$DB" == "postgres" ]]; then psql -f dbscripts/postgresql_process_tracker.sql process_tracker -U postgres; fi
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[DEFAULT]
2+
log_level = ERROR
3+
max_concurrent_failures = 5
4+
data_store_type = postgresql
5+
data_store_username = pt_admin
6+
data_store_password = Testing1!
7+
data_store_host = localhost
8+
data_store_port = 5432
9+
data_store_name = process_tracker

0 commit comments

Comments
 (0)