Skip to content

Commit 9fe2d4d

Browse files
committedMay 14, 2014
Merge pull request #660 from gmarz/master
Changed index size stats from ints to longs
2 parents ae21e76 + c51f3fb commit 9fe2d4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

Diff for: ‎src/Nest/Domain/Stats/IndexSizeStats.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ public class IndexSizeStats
1212
public string PrimarySize { get; set; }
1313

1414
[JsonProperty(PropertyName = "primary_size_in_bytes")]
15-
public int PrimarySizeInBytes { get; set; }
15+
public long PrimarySizeInBytes { get; set; }
1616

1717
[JsonProperty(PropertyName = "size")]
1818
public string Size { get; set; }
1919

2020
[JsonProperty(PropertyName = "size_in_bytes")]
21-
public int SizeInBytes { get; set; }
21+
public long SizeInBytes { get; set; }
2222

2323
}
2424
}

0 commit comments

Comments
 (0)
Please sign in to comment.