We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d869d94 commit f07d7f4Copy full SHA for f07d7f4
azure/functions/durable_functions.py
@@ -99,10 +99,10 @@ def decode(cls,
99
except json.JSONDecodeError:
100
# String failover if the content is not json serializable
101
result = data.value
102
- except Exception:
+ except Exception as e:
103
raise ValueError(
104
'activity trigger input must be a string or a '
105
- f'valid json serializable ({data.value})')
+ f'valid json serializable ({data.value})') from e
106
else:
107
raise NotImplementedError(
108
f'unsupported activity trigger payload type: {data_type}')
0 commit comments