Skip to content

Commit 8ef6edb

Browse files
committed
Minor fix to sdk
1 parent 542bb16 commit 8ef6edb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

shuffle_sdk/shuffle_sdk.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4098,8 +4098,11 @@ def check_branch_conditions(action, fullexecution, self):
40984098
break
40994099
except TypeError as e:
41004100
newres = ""
4101-
self.logger.info(f"[ERROR] Got function exec type error: {e}")
4101+
41024102
try:
4103+
if not "got unexpected" in f"{e}":
4104+
self.logger.info(f"[ERROR] Got function exec type error: {e}")
4105+
41034106
e = json.loads(f"{e}")
41044107
except:
41054108
e = f"{e}"

0 commit comments

Comments
 (0)