Skip to content

Commit

Permalink
Merge pull request #38 from siemens/dev_infrastructure_fix_grasync_time
Browse files Browse the repository at this point in the history
fix(infrastructure): write utc timestamp into influxdb
  • Loading branch information
TomSie committed Nov 12, 2019
2 parents ad790ca + 10e03db commit 4275c44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion srv/fluffi/data/grasync/main.py
Expand Up @@ -47,7 +47,7 @@
print(active_fuzzjobs)
try:
for fuzzjob in active_fuzzjobs:
fuzzjob_engine = create_engine(SQLALCHEMY_DATABASE_URI_WITHOUT_DB + 'fluffi_' + fuzzjob)
fuzzjob_engine = create_engine(SQLALCHEMY_DATABASE_URI_WITHOUT_DB + 'fluffi_' + fuzzjob, connect_args={"init_command":"SET SESSION time_zone='+00:00'"})
connection = fuzzjob_engine.connect()

# Covered Blocks and Population Size
Expand Down

0 comments on commit 4275c44

Please sign in to comment.