Skip to content

Commit

Permalink
Batch unit tests time out update. (#2968)
Browse files Browse the repository at this point in the history
  • Loading branch information
g2vinay authored Feb 23, 2019
1 parent 88f4226 commit c5c5497
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ static CloudPool createIfNotExistPaaSPool(String poolId) throws Exception {
String POOL_OS_FAMILY = "4";
String POOL_OS_VERSION = "*";

// 5 minutes
long POOL_STEADY_TIMEOUT_IN_SECONDS = 5 * 60 * 1000;
// 10 minutes
long POOL_STEADY_TIMEOUT_IN_SECONDS = 10 * 60 * 1000;

// Check if pool exists
if (!batchClient.poolOperations().existsPool(poolId)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ public void canCRUDLowPriIaaSPool() throws Exception {
int POOL_VM_COUNT = 0;
int POOL_LOW_PRI_VM_COUNT = 2;

// 5 minutes
long POOL_STEADY_TIMEOUT_IN_SECONDS = 5 * 60 * 1000;
// 10 minutes
long POOL_STEADY_TIMEOUT_IN_SECONDS = 10 * 60 * 1000;

// Check if pool exists
if (!batchClient.poolOperations().existsPool(poolId)) {
Expand Down Expand Up @@ -366,8 +366,8 @@ public void canCRUDLowPriPaaSPool() throws Exception {
String POOL_OS_FAMILY = "4";
String POOL_OS_VERSION = "*";

// 5 minutes
long POOL_STEADY_TIMEOUT_IN_SECONDS = 5 * 60 * 1000;
// 10 minutes
long POOL_STEADY_TIMEOUT_IN_SECONDS = 10 * 60 * 1000;

// Check if pool exists
if (!batchClient.poolOperations().existsPool(poolId)) {
Expand Down

0 comments on commit c5c5497

Please sign in to comment.