Skip to content

Commit

Permalink
Fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
gianm committed Jul 24, 2024
1 parent b6016a2 commit b1445ff
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,6 @@ private void writeDurableStorageSuccessFile()
throw new ISE(
e,
"Unable to create success file at location[%s]",
DurableStorageUtils.SUCCESS_MARKER_FILENAME,
durableStorageOutputChannelFactory.getSuccessFilePath()
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public interface Worker
*
* @throws IOException when the worker output is found but there is an error while reading it.
*/
ListenableFuture<InputStream> readChannel(StageId stageId, int partitionNumber, long offset) throws IOException;
ListenableFuture<InputStream> readChannel(StageId stageId, int partitionNumber, long offset);

/**
* Returns a snapshot of counters.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ public Response httpPostPartialKeyStatistics(
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public Response httpPostDoneReadingInput(
@PathParam("queryId") final String queryId,
@PathParam("stageNumber") final int stageNumber,
@PathParam("workerNumber") final int workerNumber,
@Context final HttpServletRequest req
Expand Down

0 comments on commit b1445ff

Please sign in to comment.