From f7ea120222b61cfad18ae1654a27632f856bbd08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=98=D0=B2=D0=B0=D0=BD=20=D0=9C=D0=B0=D1=81=D0=BB=D0=BE?= =?UTF-8?q?=D0=B2?= Date: Fri, 25 Nov 2022 16:03:26 +0300 Subject: [PATCH] debug --- Sources/pyOpenRPA/Orchestrator/ServerSettings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/pyOpenRPA/Orchestrator/ServerSettings.py b/Sources/pyOpenRPA/Orchestrator/ServerSettings.py index 316c8d30..8369912a 100755 --- a/Sources/pyOpenRPA/Orchestrator/ServerSettings.py +++ b/Sources/pyOpenRPA/Orchestrator/ServerSettings.py @@ -250,7 +250,7 @@ def pyOpenRPA_Processor(inRequest:Request, inAuthTokenStr:str = Depends(Identify lAsyncActivityList = [] for lActivityItem in lInput: lResult.append(__Orchestrator__.ProcessorActivityItemAppend(inActivityItemDict=lActivityItem)) - if lInput.get("ThreadBool", False) == False: + if lActivityItem.get("ThreadBool", False) == False: lSyncActvityList.append(lActivityItem) else: lAsyncActivityList.append(lActivityItem)