Skip to content

Commit a64c6d6

Browse files
committed
Version bump to 0.4.3
Removed the option to create config file from SettingsManager init. Still causing issues and SettingsManager should not do that on call anyway. Still remains in beta
1 parent e445628 commit a64c6d6

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

dbscripts/mysql_process_tracker_defaults.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ INSERT INTO process_tracker.error_type_lkup (error_type_id, error_type_name) VAL
1919
INSERT INTO process_tracker.process_type_lkup (process_type_id, process_type_name) VALUES (default, 'Extract');
2020
INSERT INTO process_tracker.process_type_lkup (process_type_id, process_type_name) VALUES (default, 'Load');
2121

22-
INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.4.2');
22+
INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.4.3');

dbscripts/postgresql_process_tracker_defaults.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ INSERT INTO process_tracker.error_type_lkup (error_type_id, error_type_name) VAL
1919
INSERT INTO process_tracker.process_type_lkup (process_type_id, process_type_name) VALUES (default, 'Extract');
2020
INSERT INTO process_tracker.process_type_lkup (process_type_id, process_type_name) VALUES (default, 'Load');
2121

22-
INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.4.2');
22+
INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.4.3');

process_tracker/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from process_tracker.extract_tracker import ExtractTracker
22
from process_tracker.process_tracker import ProcessTracker
33

4-
__version__ = "0.4.2"
4+
__version__ = "0.4.3"

process_tracker/utilities/settings.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ def __init__(self, config_location=None):
6868

6969
if exists:
7070
self.read_config_file()
71-
72-
elif not cloud:
73-
self.create_config_file()
71+
else:
72+
self.logger.error("Config file not found. Unable to read.")
73+
raise Exception("Config file not found. Unable to read.")
7474

7575
def create_config_file(self):
7676
"""

0 commit comments

Comments
 (0)