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 757cf2f commit 4334557Copy full SHA for 4334557
python/pyspark/sql/streaming.py
@@ -182,7 +182,7 @@ def exception(self):
182
"""
183
if self._jsq.exception().isDefined():
184
je = self._jsq.exception().get()
185
- msg = je.toString().split(': ', 1)[1] # Drop the Java StreamingQueryException type info
+ msg = je.toString().split(': ', 1)[1] # Drop the Java StreamingQueryException type info
186
stackTrace = '\n\t at '.join(map(lambda x: x.toString(), je.getStackTrace()))
187
return StreamingQueryException(msg, stackTrace)
188
else:
0 commit comments