Skip to content

Commit

Permalink
Merge pull request #109 from ryanrousseau/octopus-fail-status
Browse files Browse the repository at this point in the history
Remove 'Failed' from list of 'Running' statuses for Octopus Deploy
  • Loading branch information
patriksvensson authored Oct 27, 2020
2 parents 871b616 + 2a04c57 commit 5d90bb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/collectors/octopus/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ impl OctopusDeployment {
match &self.status[..] {
"Success" => BuildStatus::Success,
"Queued" => BuildStatus::Queued,
"Executing" | "Cancelling" | "Failed" | "" => BuildStatus::Running,
"Executing" | "Cancelling" | "" => BuildStatus::Running,
"Canceled" => BuildStatus::Canceled,
_ => BuildStatus::Failed,
}
Expand Down

0 comments on commit 5d90bb9

Please sign in to comment.