PB
Size: a a a
PB
PB
request.query_params is a more correctly named synonym for request.GET.
For clarity inside your code, we recommend using request.query_params instead of the Django's standard request.GET. Doing so will help keep your codebase more correct and obvious - any HTTP method type may include query parameters, not just GET requests.
DT
Z
BB
DT
AO
@dramatiq.actor(time_limit=1000)
def long_running():
try:
setup_missiles()
time.sleep(2)
launch_missiles() # <- this will not run
except TimeLimitExceeded:
teardown_missiles() # <- this will run
AO
i
GB
V💊
D
V💊
vc
GB
V💊
Z
W
GB