fix: remove REDIS env from sandbox.
parent
c46c631d52
commit
0c8a80897b
|
|
@ -51,7 +51,7 @@ try:
|
||||||
import os
|
import os
|
||||||
env = dict(os.environ)
|
env = dict(os.environ)
|
||||||
for key in list(env.keys()):
|
for key in list(env.keys()):
|
||||||
if key in os.environ and (key.startswith('MAXKB') or key.startswith('POSTGRES') or key.startswith('PG')):
|
if key in os.environ and (key.startswith('MAXKB') or key.startswith('POSTGRES') or key.startswith('PG') or key.startswith('REDIS')):
|
||||||
del os.environ[key]
|
del os.environ[key]
|
||||||
locals_v={'{}'}
|
locals_v={'{}'}
|
||||||
keywords={keywords}
|
keywords={keywords}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue