Add toString() to IndexShardGateway

This commit is contained in:
Simon Willnauer 2014-12-15 22:53:58 +01:00
parent a834cc0e0f
commit af64a02ed1
1 changed files with 5 additions and 0 deletions

View File

@ -356,4 +356,9 @@ public class IndexShardGateway extends AbstractIndexShardComponent implements Cl
}
}
}
@Override
public String toString() {
return "shard_gateway";
}
}