Skip to content

Commit 72bbfdb

Browse files
committed
Fixed a bug with app sdk timeout mapping
1 parent 2c5a742 commit 72bbfdb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='shuffle_sdk',
5-
version='0.0.30',
5+
version='0.0.31',
66
description='The SDK used for Shuffle',
77
py_modules=["shuffle_sdk"],
88
license='MIT',

shuffle_sdk/shuffle_sdk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3971,7 +3971,7 @@ def check_branch_conditions(action, fullexecution, self):
39713971
if "app_name" in self.action and (self.action["app_name"].lower() == "shuffle tools" or self.action["app_name"].lower() == "shuffle subflow"):
39723972
timeout = 55
39733973

3974-
timeout_env = os.getenv("SHUFFLE_APP_SDK_TIMEOUT", timeout)
3974+
timeout_env = os.getenv("SHUFFLE_APP_SDK_TIMEOUT", "")
39753975
if len(timeout_env) > 0:
39763976
try:
39773977
timeout = int(timeout_env)

0 commit comments

Comments
 (0)