Skip to content

Commit

Permalink
Remove forced string eval for tacDatabasePath
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkneipp committed Feb 3, 2024
1 parent a3c6ef9 commit 816d2eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ def __init__(self, logTool, redisMessaging=None):
self.redisUnixSocketPath = self.config.get('redis', {}).get('unixSocketPath', '/var/run/redis/redis-server.sock')
self.redisHost = self.config.get('redis', {}).get('host', 'localhost')
self.redisPort = self.config.get('redis', {}).get('port', 6379)
self.tacDatabasePath = str(self.config.get('eir', {}).get('tac_database_csv', None))
self.tacDatabasePath = self.config.get('eir', {}).get('tac_database_csv', None)
self.imsiImeiLogging = self.config.get('eir', {}).get('imsi_imei_logging', True)
self.simSwapNotificationEnabled = self.config.get('eir', {}).get('simSwapNotification', False)
self.georedEnabled = self.config.get('geored', {}).get('enabled', True)
Expand Down

0 comments on commit 816d2eb

Please sign in to comment.