Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix routing through relay, default network RPS, --token, logging, readme #399

Merged
merged 10 commits into from
Jul 22, 2023
Next Next commit
Hide GeneratorExit in _iterate_inference_steps()
  • Loading branch information
borzunov committed Jul 22, 2023
commit f150932800aabc4ad03c271971df3909734a5e21
2 changes: 1 addition & 1 deletion src/petals/server/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ async def _iterate_inference_steps(
anext_task.cancel()
get_push_task.cancel()
return
except:
except Exception:
logger.warning("rpc_inference._iterate_inference_steps() exception:", exc_info=True)
raise

Expand Down
Loading