Skip to content

Commit

Permalink
[Hotfix][Zeta] Fix checkpoint storage namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
hailin0 committed Mar 4, 2023
1 parent 533ff2c commit d346ac3
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@ public PipelineState deserializeCheckPointData(byte[] data) throws IOException {

public void setStorageNameSpace(String storageNameSpace) {
if (storageNameSpace != null) {
if (!storageNameSpace.endsWith(DEFAULT_CHECKPOINT_FILE_PATH_SPLIT)) {
storageNameSpace = storageNameSpace + DEFAULT_CHECKPOINT_FILE_PATH_SPLIT;
}
this.storageNameSpace = storageNameSpace;
}
}
Expand Down

0 comments on commit d346ac3

Please sign in to comment.