Skip to content

Commit 986ae29

Browse files
2 parents cb77c18 + fd224a1 commit 986ae29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/score.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,10 +291,10 @@ async def post_processing(uri=Form(), userName=Form(), password=Form(), database
291291

292292
if "enable_communities" in tasks:
293293
await asyncio.to_thread(create_communities, uri, userName, password, database)
294-
josn_obj = {'api_name': 'post_processing/create_communities', 'db_url': uri, 'logging_time': formatted_time(datetime.now(timezone.utc))}
294+
json_obj = {'api_name': 'post_processing/create_communities', 'db_url': uri, 'logging_time': formatted_time(datetime.now(timezone.utc))}
295295
logging.info(f'created communities')
296296

297-
logger.log_struct(josn_obj)
297+
logger.log_struct(json_obj)
298298
return create_api_response('Success', message='All tasks completed successfully')
299299

300300
except Exception as e:

0 commit comments

Comments
 (0)