Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
summaryzb committed Mar 6, 2025
1 parent bfe9b76 commit 7b0f563
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,10 @@ public RssSendShuffleDataResponse sendShuffleData(RssSendShuffleDataRequest requ
null,
request.getRetryIntervalMax(),
maxRetryAttempts,
t -> !request.needCancel() && !(t instanceof OutOfMemoryError) && !(t instanceof NotRetryException));
t ->
!request.needCancel()
&& !(t instanceof OutOfMemoryError)
&& !(t instanceof NotRetryException));
} catch (Throwable throwable) {
LOG.warn("Failed to send shuffle data due to ", throwable);
isSuccessful = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,10 @@ public RssSendShuffleDataResponse sendShuffleData(RssSendShuffleDataRequest requ
null,
request.getRetryIntervalMax(),
maxRetryAttempts,
t -> !request.needCancel() && !(t instanceof OutOfMemoryError) && !(t instanceof NotRetryException));
t ->
!request.needCancel()
&& !(t instanceof OutOfMemoryError)
&& !(t instanceof NotRetryException));
} catch (Throwable throwable) {
LOG.warn("Failed to send shuffle data due to ", throwable);
isSuccessful = false;
Expand Down

0 comments on commit 7b0f563

Please sign in to comment.