File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,13 @@ Improved Documentation:
1111 (pr #1068 by @jzvandenoever)
1212* Fix Java Client API reference (pr #1069 by @emmanuel-ferdman)
1313
14+
15+ Bugfixes:
16+
17+ * Make KafkaStorageError retriable after metadata refresh like in other
18+ implementations (pr #1115 by @omerhadari)
19+
20+
1421Misc:
1522* Use SPDX license expression for project metadata.
1623
Original file line number Diff line number Diff line change @@ -740,7 +740,9 @@ class OperationNotAttempted(BrokerResponseError):
740740class KafkaStorageError (BrokerResponseError ):
741741 errno = 56
742742 message = "KAFKA_STORAGE_ERROR"
743- description = "The user-specified log directory is not found in the broker config."
743+ description = "Disk error when trying to access log file on the disk."
744+ retriable = True
745+ invalid_metadata = True
744746
745747
746748class LogDirNotFound (BrokerResponseError ):
You can’t perform that action at this time.
0 commit comments