fix: 修复添加资产到节点,移除资产从节点,移动资产到节点 API rbac 权限位

This commit is contained in:
Bai
2023-02-14 15:34:01 +08:00
committed by Jiangjie.Bai
parent 71f3fe64b4
commit 770e7733e7
5 changed files with 114 additions and 79 deletions

View File

@@ -184,7 +184,7 @@ def merge_delay_run(ttl=5, key=None):
elif isinstance(v, set):
cache_kwargs[k] = cache_kwargs[k].union(v)
else:
cache_kwargs[k] += v
cache_kwargs[k] = list(cache_kwargs[k]) + list(v)
_loop_debouncer_func_args_cache[cache_key] = cache_kwargs
run_debouncer_func(cache_key, org, ttl, func, *args, **cache_kwargs)