Skip to content

Commit

Permalink
🥅 Catch InactiveError for TGIS to modify error message
Browse files Browse the repository at this point in the history
Signed-off-by: gkumbhat <[email protected]>
  • Loading branch information
gkumbhat committed Aug 2, 2024
1 parent 1e5aac6 commit 285ae7c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions caikit_nlp/toolkit/text_generation/tgis_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,13 @@ def unary_generate(
batch_response = self.tgis_client.Generate(
request, timeout=self.tgis_req_timeout
)
except grpc._channel._InactiveRpcError as err:
log.error("<NLP30829218E>", err.details)
error_message = "The underlying TCP connection is closed"
caikit_status_code = GRPC_TO_CAIKIT_CORE_STATUS.get(
err.code(), CaikitCoreStatusCode.UNKNOWN
)
raise CaikitCoreException(caikit_status_code, error_message)
except grpc.RpcError as err:
raise_caikit_core_exception(err)

Expand Down Expand Up @@ -653,6 +660,13 @@ def stream_generate(
input_tokens=input_token_list,
details=details,
)
except grpc._channel._InactiveRpcError as err:
log.error("<NLP11829118E>", err.details)
error_message = "The underlying TCP connection is closed"
caikit_status_code = GRPC_TO_CAIKIT_CORE_STATUS.get(
err.code(), CaikitCoreStatusCode.UNKNOWN
)
raise CaikitCoreException(caikit_status_code, error_message)
except grpc.RpcError as err:
raise_caikit_core_exception(err)

Expand Down

0 comments on commit 285ae7c

Please sign in to comment.