Commit 20f31575 authored by Geoff Simmons's avatar Geoff Simmons

Correctly decode the status field in the dataplane tx response.

parent ee85747d
...@@ -95,7 +95,7 @@ func status(reloadStr string) ReloadStatus { ...@@ -95,7 +95,7 @@ func status(reloadStr string) ReloadStatus {
return Failed return Failed
case "in_progress": case "in_progress":
return InProgress return InProgress
case "succeeded": case "succeeded", "success":
return Succeeded return Succeeded
default: default:
return Unknown return Unknown
......
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