I moved the batch helper from dispatch.fastapi.Dispatch to the dispatch.function.Registry base class, so that it can be used when you construct a remote endpoint registry (#134)
when quitting the python -m dispatch.test server with SIGINT / Ctrl+C, previously it would print a stack trace from where the KeyboardInterrupt was raised. Now it prints a nice single-line exit message
Two improvements I noticed:
batch
helper fromdispatch.fastapi.Dispatch
to thedispatch.function.Registry
base class, so that it can be used when you construct a remote endpoint registry (#134)python -m dispatch.test
server with SIGINT / Ctrl+C, previously it would print a stack trace from where theKeyboardInterrupt
was raised. Now it prints a nice single-line exit message