From 80078ac1b365e2bae913a02cfc204870c4f87ce3 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Wed, 14 Oct 2020 13:57:10 -0700 Subject: [PATCH] set default path for put_nonblocking helper old-commit-hash: de833ecb067d84b7427710832a99186647b4d579 --- common/params_pyx.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/params_pyx.pyx b/common/params_pyx.pyx index 7312a4d26e..ea76b95023 100755 --- a/common/params_pyx.pyx +++ b/common/params_pyx.pyx @@ -150,7 +150,7 @@ cdef class Params: self.p.delete_db_value(key) -def put_nonblocking(key, val, d=None): +def put_nonblocking(key, val, d=PARAMS): def f(key, val): params = Params(d) params.put(key, val)