File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -312,11 +312,6 @@ def process_results(params: ContainerParams) -> None:
312312 print ("No chat messages found in the database!" )
313313 save_stats_to_json ({}, params .stats_path )
314314
315- print_table_info (params .db_path , "chat_messages" )
316- print_table_info (params .db_path , "submission_chats" )
317- print_table_info (params .db_path , "submissions" )
318- print_table_info (params .db_path , "users" )
319-
320315
321316# compute instruction
322317# 56 SELECT * FROM results, https://github.com/VaughnKHHo/compute-job-template/releases/download/v16/my-compute-job-16.tar.gz
@@ -405,6 +400,10 @@ def main() -> None:
405400 if not execute_query (params ):
406401 sys .exit (2 )
407402
403+ print_table_info (params .db_path , "chat_messages" )
404+ print_table_info (params .db_path , "submission_chats" )
405+ print_table_info (params .db_path , "submissions" )
406+ print_table_info (params .db_path , "users" )
408407 # Process results (whether from dev mode or query execution)
409408 process_results (params )
410409
You can’t perform that action at this time.
0 commit comments