Skip to content

Commit 2d1f4a0

Browse files
add sleep for managermc1 failing test case
1 parent b116765 commit 2d1f4a0

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

.github/workflows/build-test-push-workflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -166,10 +166,10 @@ jobs:
166166
test: [
167167
basic,
168168
appframeworksS1,
169-
# managerappframeworkc3,
170-
# managerappframeworkm4,
171-
# managersecret,
172-
# managermc,
169+
managerappframeworkc3,
170+
managerappframeworkm4,
171+
managersecret,
172+
managermc,
173173
]
174174
runs-on: ubuntu-latest
175175
env:

.github/workflows/int-test-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ jobs:
5656
matrix:
5757
test:
5858
[
59-
appframeworksS1,
59+
# appframeworksS1,
6060
# managerappframeworkc3,
6161
# managerappframeworkm4,
6262
# managersecret,
6363
# managersmartstore,
64-
# managermc1,
64+
managermc1,
6565
# managermc2,
6666
# managercrcrud,
6767
# licensemanager,

test/monitoring_console/manager_monitoring_console_test.go

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,11 @@ var _ = Describe("Monitoring Console test", func() {
760760
// Verify MC is Ready and stays in ready state
761761
// testenv.VerifyMonitoringConsoleReady(ctx, deployment, mcTwoName, mcTwo, testcaseEnvInst)
762762

763-
// ############################ VERIFICATOIN FOR MONITORING CONSOLE TWO POST SHC RECONFIG ###############################
763+
// ############################ VERIFICATION FOR MONITORING CONSOLE TWO POST SHC RECONFIG ###############################
764+
765+
// Adding a sleep so that SHC can come up correctly
766+
testcaseEnvInst.Log.Info("Sleeping to allow SHC and MC to become ready")
767+
time.Sleep(900 * time.Second)
764768

765769
// Check Cluster Manager in Monitoring Console Two Config Map
766770
testcaseEnvInst.Log.Info("Verify Cluster Manager on Monitoring Console Two Config Map after SHC Reconfig")
@@ -781,7 +785,7 @@ var _ = Describe("Monitoring Console test", func() {
781785
testcaseEnvInst.Log.Info("Checking for Indexer Pod on MC TWO after SHC Reconfig")
782786
testenv.VerifyPodsInMCConfigString(ctx, deployment, testcaseEnvInst, indexerPods, mcTwoName, true, true)
783787

784-
// ############################ VERIFICATOIN FOR MONITORING CONSOLE ONE POST SHC RECONFIG ###############################
788+
// ############################ VERIFICATION FOR MONITORING CONSOLE ONE POST SHC RECONFIG ###############################
785789

786790
// Verify MC ONE is Ready and stays in ready state before running verfications
787791
testenv.VerifyMonitoringConsoleReady(ctx, deployment, mcName, mc, testcaseEnvInst)

0 commit comments

Comments
 (0)