Skip to content

Commit 3da5e80

Browse files
committed
Merge branch '3.5.x'
2 parents 2c0e7b8 + 3a0b9b1 commit 3da5e80

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

framework/fel/python/plugins/builtins/fit_py_code_node_tools/conf/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ user:
55
code:
66
import:
77
whitelist:
8-
- 'asyncio'
98
- 'json'
109
- 'typing'
1110
- 'pandas'
@@ -25,6 +24,7 @@ code:
2524
- 'multiprocessing'
2625
- 'timeit'
2726
- 'platform'
27+
- 'asyncio'
2828
timeout: 10
2929
max_pool: 4
3030
mem_limit: 189792256 # 181*1024*1024

framework/fel/python/plugins/builtins/fit_py_code_node_tools/python_repl_impl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class InternalErrorCode(IntEnum):
4444
"header": _PYTHON_REPL_HEADER,
4545
"header_len": len(_PYTHON_REPL_HEADER.split('\n')),
4646
"entrypoint": 'main',
47-
"whitelist": ['asyncio', 'json', 'typing'],
47+
"whitelist": ['json', 'typing'],
4848
"blacklist": ['os', 'sys', 'cmd', 'subprocess', 'multiprocessing', 'timeit', 'platform'],
4949
"timeout": 10,
5050
"max_pool": 4,

0 commit comments

Comments
 (0)