Skip to content

Commit

Permalink
linstor: update to java-linstor 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rp- committed Mar 15, 2024
1 parent e0731c5 commit 40cd088
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ private void deleteSnapshot(@Nonnull DataStore dataStore, @Nonnull String rscDef

try
{
ApiCallRcList answers = linstorApi.resourceSnapshotDelete(rscDefName, snapshotName);
ApiCallRcList answers = linstorApi.resourceSnapshotDelete(rscDefName, snapshotName, Collections.emptyList());
if (answers.hasError())
{
for (ApiCallRc answer : answers)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ public static List<String> getLinstorNodeNames(@Nonnull DevelopersApi api) throw
Collections.singletonList(storagePoolName),
Collections.emptyList(),
null,
null
null,
true
);
return sps != null ? sps : Collections.emptyList();
}
Expand Down Expand Up @@ -165,7 +166,8 @@ public static List<StoragePool> getRscGroupStoragePools(DevelopersApi api, Strin
rscGrps.get(0).getSelectFilter().getStoragePoolList(),
null,
null,
null
null,
true
);
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
<cs.nitro.version>10.1</cs.nitro.version>
<cs.opensaml.version>2.6.6</cs.opensaml.version>
<cs.rados-java.version>0.6.0</cs.rados-java.version>
<cs.java-linstor.version>0.3.0</cs.java-linstor.version>
<cs.java-linstor.version>0.4.3</cs.java-linstor.version>
<cs.reflections.version>0.10.2</cs.reflections.version>
<cs.servicemix.version>3.4.4_1</cs.servicemix.version>
<cs.servlet.version>4.0.1</cs.servlet.version>
Expand Down

0 comments on commit 40cd088

Please sign in to comment.