Skip to content

Commit

Permalink
Merge branch 'develop' into feature/queueDashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
sburnicki committed Nov 12, 2018
2 parents 8c0f333 + 31c4e72 commit 185d7c3
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -18,15 +18,15 @@ databaseChangeLog = {
changeSet(author: "pal", id: "Task-2_transform_http_status") {
sql('''
UPDATE job_result
SET wpt_status = 'IN_PROGRESS'
SET wpt_status = 'PENDING'
WHERE http_status_code = 100;
''')
}

changeSet(author: "pal", id: "Task-3_transform_http_status") {
sql('''
UPDATE job_result
SET wpt_status = 'WAITING'
SET wpt_status = 'IN_PROGRESS'
WHERE http_status_code = 101;
''')
}
Expand Down Expand Up @@ -74,15 +74,15 @@ databaseChangeLog = {
changeSet(author: "pal", id: "Task-9_transform_http_status") {
sql('''
UPDATE job_result
SET job_result_status = 'RUNNING'
SET job_result_status = 'WAITING'
WHERE http_status_code = 100;
''')
}

changeSet(author: "pal", id: "Task-10_transform_http_status") {
sql('''
UPDATE job_result
SET job_result_status = 'WAITING'
SET job_result_status = 'RUNNING'
WHERE http_status_code = 101;
''')
}
Expand Down

0 comments on commit 185d7c3

Please sign in to comment.