Skip to content

Commit

Permalink
add sleep for managermc1 failing test case
Browse files Browse the repository at this point in the history
  • Loading branch information
rlieberman-splunk committed Dec 12, 2024
1 parent b116765 commit 2d1f4a0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test-push-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,10 @@ jobs:
test: [
basic,
appframeworksS1,
# managerappframeworkc3,
# managerappframeworkm4,
# managersecret,
# managermc,
managerappframeworkc3,
managerappframeworkm4,
managersecret,
managermc,
]
runs-on: ubuntu-latest
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/int-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ jobs:
matrix:
test:
[
appframeworksS1,
# appframeworksS1,
# managerappframeworkc3,
# managerappframeworkm4,
# managersecret,
# managersmartstore,
# managermc1,
managermc1,
# managermc2,
# managercrcrud,
# licensemanager,
Expand Down
8 changes: 6 additions & 2 deletions test/monitoring_console/manager_monitoring_console_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,11 @@ var _ = Describe("Monitoring Console test", func() {
// Verify MC is Ready and stays in ready state
// testenv.VerifyMonitoringConsoleReady(ctx, deployment, mcTwoName, mcTwo, testcaseEnvInst)

// ############################ VERIFICATOIN FOR MONITORING CONSOLE TWO POST SHC RECONFIG ###############################
// ############################ VERIFICATION FOR MONITORING CONSOLE TWO POST SHC RECONFIG ###############################

// Adding a sleep so that SHC can come up correctly
testcaseEnvInst.Log.Info("Sleeping to allow SHC and MC to become ready")
time.Sleep(900 * time.Second)

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

// ############################ VERIFICATOIN FOR MONITORING CONSOLE ONE POST SHC RECONFIG ###############################
// ############################ VERIFICATION FOR MONITORING CONSOLE ONE POST SHC RECONFIG ###############################

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

0 comments on commit 2d1f4a0

Please sign in to comment.