Skip to content

Commit

Permalink
fix deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
xinyu55 committed Jan 11, 2024
1 parent 4fb808d commit 51a1942
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import spock.lang.Timeout
@Stepwise
class SampleApiTest extends Specification {

@Timeout(15)
@Timeout(30)

def "run choice sample task"() {
when:
Expand Down Expand Up @@ -108,7 +108,7 @@ class SampleApiTest extends Specification {

private boolean checkDagStatus(String executionId) {
def i = 0
while (i < 10) {
while (i < 20) {
def getResponseJson = sendGetRequest("http://localhost:8080/flow/get.json?execution_id=" + executionId, "application/json")
if (getResponseJson.content.ret.dag_status == "SUCCEED") {
return true
Expand Down

0 comments on commit 51a1942

Please sign in to comment.