File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 5
5
// and it wouldn’t reflect when the data was actually dumped from canvas.
6
6
// More info on UDP's batch-ingest DAG process can be found here: https://resources.unizin.org/display/UDP/Batch-ingest+application
7
7
'''
8
- SELECT * FROM EXTERNAL_QUERY("context_store", "select 'canvasdatadate' as pkey, min(dag_run) as pvalue from report.publish_info pi2");
8
+ SELECT * FROM EXTERNAL_QUERY("us. context_store", "select 'canvasdatadate' as pkey, min(dag_run) as pvalue from report.publish_info pi2");
9
9
''',
10
10
"user" :
11
11
'''
Original file line number Diff line number Diff line change @@ -226,7 +226,10 @@ def update_unizin_metadata(self):
226
226
227
227
logger .debug (metadata_sql )
228
228
229
- status += self .util_function (metadata_sql , 'unizin_metadata' )
229
+ try :
230
+ status += self .util_function (metadata_sql , 'unizin_metadata' )
231
+ except Exception as e :
232
+ logger .warn (f"Could not directly access metadata, this is likely just an issue when using synthetic data." )
230
233
231
234
return status
232
235
@@ -652,6 +655,7 @@ def do(self) -> str:
652
655
653
656
# continue cron tasks
654
657
658
+ logger .info ("** term" )
655
659
status += self .update_term ()
656
660
657
661
exception_in_run = False
You can’t perform that action at this time.
0 commit comments