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 48a88e3 commit 6660d64Copy full SHA for 6660d64
b2sdk/exception.py
@@ -580,7 +580,7 @@ def interpret_b2_error(
580
matcher = COPY_SOURCE_TOO_BIG_ERROR_MESSAGE_RE.match(message)
581
assert matcher is not None, f"unexpected error message: {message}"
582
size = int(matcher.group('size'))
583
- return CopySourceTooBig(size)
+ return CopySourceTooBig((message, code, size)
584
elif status == 400 and code == 'file_lock_conflict':
585
return DisablingFileLockNotSupported()
586
elif status == 400 and code == 'source_replication_conflict':
0 commit comments