Skip to content

Commit dc32304

Browse files
committed
Increasing WAITER_TIMEOUT to 1100s. Correcting the marketplace image to 0722 that matches changes done previously for the 5.5 release
1 parent 1e83a5d commit dc32304

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

marketplace/c2d_deployment_configuration.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"defaultDeploymentType": "MULTI_VM",
33
"templateName": "couchbase",
44
"projectId": "couchbase-public",
5-
"imageName": "couchbase-server-ee-byol-v20180522",
5+
"imageName": "couchbase-server-ee-byol-v20180722",
66
"useSolutionPackage": "true"
77
}

simple/group.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
URL_BASE = 'https://www.googleapis.com/compute/v1/projects/'
44

5-
WAITER_TIMEOUT = '900s'
5+
WAITER_TIMEOUT = '1100s'
66

77
def GenerateConfig(context):
88
runtimeconfigName = context.properties['runtimeconfigName']
@@ -243,13 +243,13 @@ def _SyncGatewayImageUrl(license, useFamily):
243243
if useFamily:
244244
return URL_BASE + 'couchbase-public/global/images/family/couchbase-sync-gateway-ee-' + license
245245
else:
246-
return URL_BASE + 'couchbase-public/global/images/couchbase-sync-gateway-ee-' + license + '-v20180522'
246+
return URL_BASE + 'couchbase-public/global/images/couchbase-sync-gateway-ee-' + license + '-v20180722'
247247

248248
def _ServerImageUrl(license, useFamily):
249249
if (useFamily):
250250
return URL_BASE + 'couchbase-public/global/images/family/couchbase-server-ee-' + license
251251
else:
252-
return URL_BASE + 'couchbase-public/global/images/couchbase-server-ee-' + license + '-v20180522'
252+
return URL_BASE + 'couchbase-public/global/images/couchbase-server-ee-' + license + '-v20180722'
253253

254254
def _WaiterSuccessPath(clusterName, groupName):
255255
return 'status/clusters/%s/groups/%s/success' % (clusterName, groupName)

0 commit comments

Comments
 (0)