Skip to content

Commit

Permalink
[hotfix][rocksdb] Fix exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
qqibrow authored Apr 15, 2020
1 parent 893ae56 commit 5d21fbe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public Map<StateHandleID, StreamStateHandle> uploadFilesToCheckpointFs(
if (throwable instanceof IOException) {
throw (IOException) throwable;
} else {
throw new FlinkRuntimeException("Failed to download data for state handles.", e);
throw new FlinkRuntimeException("Failed to upload data for state handles.", e);
}
}

Expand Down

0 comments on commit 5d21fbe

Please sign in to comment.