Skip to content

Commit

Permalink
CDK: translate java EOF exception's message to a more customer-friend…
Browse files Browse the repository at this point in the history
…ly message (#39417)

fixes airbytehq/oncall#4283
  • Loading branch information
theyueli authored Jun 13, 2024
1 parent e093d62 commit 7508ffb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,10 @@ object ConnectorExceptionUtil {
"temporary file size exceeds temp_file_limit"
)
private val TRANSIENT_EOF_EXCEPTION_MESSAGE: Array<String> =
arrayOf("connection was unexpectedly lost")
arrayOf(
"connection was unexpectedly lost",
"can not read response from server. expected to read"
)
private val RECOVERY_CONNECTION_EXCEPTION_MESSAGE: Array<String> =
arrayOf("due to conflict with recovery")

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.37.2
version=0.37.3

0 comments on commit 7508ffb

Please sign in to comment.