File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ def generate_run_id() -> int:
201
201
202
202
"""
203
203
logger .debug ("Generating run_id from timestamp" )
204
- run_id = int (time .time ())
204
+ run_id = int (time .time () * 1000 )
205
205
config .RUN ["run_id" ] = run_id
206
206
return run_id
207
207
Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ def process_ocsci_conf(arguments):
209
209
if args .flexy_env_file :
210
210
framework .config .ENV_DATA ["flexy_env_file" ] = args .flexy_env_file
211
211
212
- framework .config .RUN ["run_id" ] = int (time .time ())
212
+ framework .config .RUN ["run_id" ] = int (time .time () * 1000 )
213
213
bin_dir = framework .config .RUN .get ("bin_dir" )
214
214
if bin_dir :
215
215
framework .config .RUN ["bin_dir" ] = os .path .abspath (
You can’t perform that action at this time.
0 commit comments