Skip to content

Commit

Permalink
updated to Esop 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
smiklosovic committed May 25, 2021
1 parent f9f4e90 commit 509a1fc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<properties>
<instaclustr.sidecar.common.version>1.3.14</instaclustr.sidecar.common.version>
<instaclustr.esop.version>1.1.1</instaclustr.esop.version>
<instaclustr.esop.version>1.1.2</instaclustr.esop.version>

<testng.version>6.14.3</testng.version>
<mockito.version>2.23.4</mockito.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ private BackupOperationRequest createBackupRequest(final String cloud,
null, // schema version
false, // topology file, even it is false, global request does not care, it will upload it anyway
null, // proxy settings
new RetrySpec(10, RetrySpec.RetryStrategy.EXPONENTIAL, 3, true) // retry
new RetrySpec(10, RetrySpec.RetryStrategy.EXPONENTIAL, 3, true), // retry
false // skip refreshing
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ public void backupTest() throws Exception {
null, // schemaVersion,
false, // upload topology
null, // proxy
null // retry
null, // retry
false // skip refreshing
);

final OperationResult<BackupOperation> result = icarusHolder.icarusClient.backup(backupOperationRequest);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ private BackupOperationRequest createBackupRequest(String snapshotName) {
null, // schema version
false, // topology file, even it is false, global request does not care, it will upload it anyway
null, // proxy
null // retry
null, // retry
false // skip refreshing
);
}

Expand Down

0 comments on commit 509a1fc

Please sign in to comment.