Skip to content

Commit 5608ef8

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into feature/CLD-599
2 parents 73ffbd3 + 1985168 commit 5608ef8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ pipeline {
158158
parameterizedCron( env.BRANCH_NAME == 'develop' ? '''00 04 * * *''' : '')
159159
}
160160
environment {
161-
timeStamp = sh(returnStdout: true, script: 'date +%Y%m%d').trim()
161+
timeStamp = sh(returnStdout: true, script: "date +%Y%m%d -d '-5 hours'").trim()
162162
dockerRegistry = 'ml-docker-dev.marklogic.com'
163163
dockerRepository = "${dockerRegistry}/marklogic/marklogic-server-centos"
164164
dockerVersion = "${ML_VERSION}-${timeStamp}-centos-1.0.0"

test/e2e/separate_nodes_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ func TestSeparateEDnode(t *testing.T) {
121121
enodePodName0 := enodeReleaseName + "-marklogic-0"
122122

123123
// wait until the first enode pod is in Ready status
124-
k8s.WaitUntilPodAvailable(t, kubectlOptions, enodePodName0, 15, 20*time.Second)
124+
k8s.WaitUntilPodAvailable(t, kubectlOptions, enodePodName0, 45, 20*time.Second)
125125

126126
groupEndpoint := fmt.Sprintf("http://%s/manage/v2/groups", tunnel.Endpoint())
127127
t.Logf(`Endpoint: %s`, groupEndpoint)
@@ -146,7 +146,7 @@ func TestSeparateEDnode(t *testing.T) {
146146
enodePodName1 := enodeReleaseName + "-marklogic-1"
147147

148148
// wait until the second enode pod is in Ready status
149-
k8s.WaitUntilPodAvailable(t, kubectlOptions, enodePodName1, 15, 20*time.Second)
149+
k8s.WaitUntilPodAvailable(t, kubectlOptions, enodePodName1, 45, 20*time.Second)
150150

151151
enodeEndpoint := fmt.Sprintf("http://%s/manage/v2/groups/enode?format=json", tunnel.Endpoint())
152152
t.Logf(`Endpoint: %s`, enodeEndpoint)

0 commit comments

Comments
 (0)