Skip to content

Commit

Permalink
fix(moniker): Use the correct moniker when applying source server gro…
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewbackes authored and Lars Wander committed Nov 17, 2017
1 parent 52823d6 commit 470c0d8
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ package com.netflix.spinnaker.orca.clouddriver.pipeline.providers.aws
import com.fasterxml.jackson.annotation.JsonIgnore
import com.fasterxml.jackson.annotation.JsonProperty
import com.fasterxml.jackson.databind.ObjectMapper
import com.netflix.spinnaker.moniker.Moniker
import com.netflix.spinnaker.orca.clouddriver.pipeline.servergroup.ResizeServerGroupStage
import com.netflix.spinnaker.orca.clouddriver.tasks.servergroup.AbstractServerGroupTask
import com.netflix.spinnaker.orca.clouddriver.utils.OortHelper
Expand Down Expand Up @@ -79,6 +80,12 @@ class ApplySourceServerGroupCapacityTask extends AbstractServerGroupTask {
}
}

@Override
Moniker convertMoniker(Stage stage) {
// Used in AbstractServerGroupTask.execute() but not needed here.
return null;
}

/**
* Fetch target server group coordinates and source server group capacity snapshot.
*
Expand Down

0 comments on commit 470c0d8

Please sign in to comment.