Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
fix new issue after rebase 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Hao Ni committed Apr 29, 2021
1 parent bd5afec commit 3221ce8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export class AzureBlobSharedStorageService extends SharedStorageService {
}

if (this.canLocalMounted && this.localMountPoint) {
this.internalStorageService.initialize(path.join(this.localMountPoint, 'nni', this.experimentId), path.join(this.remoteMountPoint, 'nni', this.experimentId));
this.internalStorageService.initialize(this.localMountPoint, path.join(this.localMountPoint, 'nni', this.experimentId));
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class NFSSharedStorageService extends SharedStorageService {
return Promise.reject(errorMessage);
}

this.internalStorageService.initialize(path.join(this.localMountPoint, 'nni', this.experimentId), path.join(this.remoteMountPoint, 'nni', this.experimentId));
this.internalStorageService.initialize(this.localMountPoint, path.join(this.localMountPoint, 'nni', this.experimentId));
return Promise.resolve();
}

Expand Down

0 comments on commit 3221ce8

Please sign in to comment.