Skip to content

Commit

Permalink
Internal: fix shard state tranport action names
Browse files Browse the repository at this point in the history
When we renamed all of the transport actions in #7105, shard started and failed were flipped around by mistake. This commit fixes their naming.

Closes #9440
  • Loading branch information
javanna committed Jan 27, 2015
1 parent 285ef0f commit 93bf737
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -52,8 +52,8 @@
*/
public class ShardStateAction extends AbstractComponent {

public static final String SHARD_STARTED_ACTION_NAME = "internal:cluster/shard/failure";
public static final String SHARD_FAILED_ACTION_NAME = "internal:cluster/shard/started";
public static final String SHARD_STARTED_ACTION_NAME = "internal:cluster/shard/started";
public static final String SHARD_FAILED_ACTION_NAME = "internal:cluster/shard/failure";

private final TransportService transportService;
private final ClusterService clusterService;
Expand Down

0 comments on commit 93bf737

Please sign in to comment.