Merge pull request #405 from democratic-csi/next

fixes for objectivefs
This commit is contained in:
Travis Glenn Hansen 2024-06-02 08:09:25 -06:00 committed by GitHub
commit 6af367fbb6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
# v1.9.3
Released 2024-06-01
- minor fixes for objectivefs and iscsi
# v1.9.2
Released 2024-05-23

View File

@ -275,7 +275,7 @@ class ObjectiveFS {
async getObjectStoreFromFilesystem(filesystem) {
if (filesystem.includes("://")) {
return GeneralUtils.before_string(filesystem, "://");
return GeneralUtils.before_string(filesystem, "://") + "://";
}
}