Skip to content

Commit

Permalink
fix(gce): revert a conditional that was accidentally flipped in #3128 (
Browse files Browse the repository at this point in the history
  • Loading branch information
plumpy committed Sep 11, 2019
1 parent a1fb528 commit 855eacd
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -114,7 +114,7 @@ class GceDeployStagePreProcessor implements DeployStagePreProcessor {
}

private static boolean shouldPinSourceServerGroup(String strategy) {
return (Strategy.fromStrategyKey(strategy) != Strategy.RED_BLACK)
return (Strategy.fromStrategyKey(strategy) == Strategy.RED_BLACK)
// || Strategy.fromStrategyKey(strategy) == Strategy.ROLLING_RED_BLACK TODO(jacobkiefer): Insert if/when RRB is implemented for GCE.
}

Expand Down

0 comments on commit 855eacd

Please sign in to comment.