Skip to content

Commit

Permalink
whoops. forgot await
Browse files Browse the repository at this point in the history
  • Loading branch information
Sigfried committed Dec 14, 2023
1 parent 9911b67 commit 0a07f7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/api_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async def start_rpt(self, request: Request, params: Dict):
rpt['host'] = os.getenv('HOSTENV', gethostname())

ip = await get_ip_from_request(request)
rpt['client'] = client_location(ip)
rpt['client'] = await client_location(ip)

rpt['schema'] = get_schema_name()

Expand Down

0 comments on commit 0a07f7c

Please sign in to comment.