Skip to content

Commit

Permalink
Use long to store maxSizePerIndex on response
Browse files Browse the repository at this point in the history
Fixes #1100
  • Loading branch information
Edmundo Alvarez committed Feb 4, 2015
1 parent 4d7c0fa commit 0300c77
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -34,7 +34,7 @@ public class DeflectorConfigResponse {
public Period maxTimePerIndex; public Period maxTimePerIndex;


@JsonProperty("max_size_per_index") @JsonProperty("max_size_per_index")
public int maxSizePerIndex; public long maxSizePerIndex;


@JsonProperty("max_number_of_indices") @JsonProperty("max_number_of_indices")
public int maxNumberOfIndices; public int maxNumberOfIndices;
Expand Down

1 comment on commit 0300c77

@edmundoa
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.