Skip to content

Commit

Permalink
fix(solr e2e): remove '-' from status command (kedacore#4835)
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Turrado <[email protected]>
Signed-off-by: Yoon Park <[email protected]>
  • Loading branch information
JorTurFer authored and yoongon committed Aug 26, 2023
1 parent 9f88f00 commit 424904e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/scalers/solr/solr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ func checkIfSolrStatusIsReady(t *testing.T, name string) error {

time.Sleep(time.Second * 10)
for i := 0; i < 60; i++ {
out, errOut, _ := ExecCommandOnSpecificPod(t, name, testNamespace, fmt.Sprintf("%s status", solrPath))
out, errOut, _ := ExecCommandOnSpecificPod(t, name, testNamespace, fmt.Sprintf("%s status", solrPath))
t.Logf("Output: %s, Error: %s", out, errOut)
if !strings.Contains(out, "running on port") {
time.Sleep(time.Second * 10)
Expand Down

0 comments on commit 424904e

Please sign in to comment.