Skip to content

Commit

Permalink
JSON ではなくエラーを返す
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexa committed Nov 20, 2024
1 parent f0c043b commit c0035de
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions amazon_transcribe_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,27 +195,8 @@ func (h *AmazonTranscribeHandler) Handle(ctx context.Context, reader io.Reader)
switch err.(type) {
case *transcribestreamingservice.LimitExceededException,
*transcribestreamingservice.InternalFailureException:
// リトライしない設定の場合、または、max_retry を超えた場合はクライアントにエラーを返し、再度接続するかはクライアント側で判断する
if (at.Config.MaxRetry < 1) || (at.Config.MaxRetry <= h.GetRetryCount()) {
if err := encoder.Encode(NewSuzuErrorResponse(err)); err != nil {
zlog.Error().
Err(err).
Str("channel_id", h.ChannelID).
Str("connection_id", h.ConnectionID).
Send()
}
}

err = ErrServerDisconnected
default:
// 再接続を想定している以外のエラーの場合はクライアントにエラーを返し、再度接続するかはクライアント側で判断する
if err := encoder.Encode(NewSuzuErrorResponse(err)); err != nil {
zlog.Error().
Err(err).
Str("channel_id", h.ChannelID).
Str("connection_id", h.ConnectionID).
Send()
}
}

w.CloseWithError(err)
Expand Down

0 comments on commit c0035de

Please sign in to comment.