You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When writing exporters, I usually want the program to run indefinitely once I call start_http_server. Currently, I need to add a workaround using e.g. while True: sleep(100). It would be nicer if there was a block=True or similar kwarg which would hang the main thread instead.
This seems simple enough that I might try add it myself if I get a positive reaction.
The text was updated successfully, but these errors were encountered:
When writing exporters, I usually want the program to run indefinitely once I call
start_http_server
. Currently, I need to add a workaround using e.g.while True: sleep(100)
. It would be nicer if there was ablock=True
or similar kwarg which would hang the main thread instead.This seems simple enough that I might try add it myself if I get a positive reaction.
The text was updated successfully, but these errors were encountered: