Commit d76650ad authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #36192 from Crassirostris/kibana-test-fix

Automatic merge from submit-queue Fixed kibana test problem After #36103 a problem was introduced. If you change basePath, dynamic bundle optimization is performed upon startup, which can take several minutes. Following PR fixed this problem by waiting until optimization is completed. @piosz Edit: This problem has no known workarounds if basePath is dynamic (like in our case) Reference: https://discuss.elastic.co/t/how-to-avoid-dynamic-bundle-optimization/37367
parents 929d3f74 00a7adb5
......@@ -50,7 +50,7 @@ const (
// ClusterLevelLoggingWithKibana is an end to end test that checks to see if Kibana is alive.
func ClusterLevelLoggingWithKibana(f *framework.Framework) {
// graceTime is how long to keep retrying requests for status information.
const graceTime = 2 * time.Minute
const graceTime = 10 * time.Minute
// Check for the existence of the Kibana service.
By("Checking the Kibana service exists.")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment