Skip to content

Commit

Permalink
fix: remove breakpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Avram Tudor committed Oct 15, 2024
1 parent 38e7c9a commit bad3036
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions skynet/modules/ttt/summaries/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,13 @@ async def echo_requests(request: Request, call_next):

if counter <= echo_requests_percent:
try:
breakpoint()
await http_client.post(
f'{echo_requests_base_url}{request.url.path}',
headers={'Authorization': f'Bearer {echo_requests_token}'},
json=await request.json(),
)
except Exception as e:
log.error(f'Failed to echo request: {e}')
log.warning(f'Failed to echo request: {e}')

return await call_next(request)

Expand Down

0 comments on commit bad3036

Please sign in to comment.