File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,8 @@ def execute():
70
70
last_execution_details = {"executionTime" : current_time , "stats" : statistics }
71
71
last_ex_json = (json .dumps (last_execution_details ))
72
72
73
- # Write Last Execution stats to DB
73
+ # Write Last Execution stats to DB
74
+ # See Alembic Revision ID: 05e0693f8cbb for table definition
74
75
with engine .connect () as connection :
75
76
ins_stmt = insert (kvt ).values (
76
77
keycol = 'last_execution_time' ,
@@ -114,7 +115,7 @@ def list_statistics():
114
115
115
116
last_execution_details = '{}' # Empty but valid JSON
116
117
117
- try :
118
+ try : # See Alembic Revision ID: 05e0693f8cbb for table definition
118
119
with engine .connect () as connection :
119
120
s = text ("select valcol from kv_unique where keycol = 'last_execution_time';" )
120
121
result = connection .execute (s )
You can’t perform that action at this time.
0 commit comments