Skip to content

Commit

Permalink
fix spell
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengchenyu committed Sep 2, 2024
1 parent b7cc5bf commit c83b3f9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1417,7 +1417,7 @@ public void getMemoryShuffleData(
public void startSortMerge(
RssProtos.StartSortMergeRequest request,
StreamObserver<RssProtos.StartSortMergeResponse> responseObserver) {
try (ServerRPCAuditContext auditContext = createAuditContext("startSortMerge")) {
try (ServerRpcAuditContext auditContext = createAuditContext("startSortMerge")) {
String appId = request.getAppId();
int shuffleId = request.getShuffleId();
int partitionId = request.getPartitionId();
Expand Down Expand Up @@ -1467,7 +1467,7 @@ public void startSortMerge(
public void getSortedShuffleData(
RssProtos.GetSortedShuffleDataRequest request,
StreamObserver<RssProtos.GetSortedShuffleDataResponse> responseObserver) {
try (ServerRPCAuditContext auditContext = createAuditContext("getSortedShuffleData")) {
try (ServerRpcAuditContext auditContext = createAuditContext("getSortedShuffleData")) {
String appId = request.getAppId();
int shuffleId = request.getShuffleId();
int partitionId = request.getPartitionId();
Expand Down

0 comments on commit c83b3f9

Please sign in to comment.