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)