From c51f3fbb69fe0278630c9171c3de0c7358e8266d Mon Sep 17 00:00:00 2001 From: Greg Marzouka Date: Tue, 13 May 2014 19:42:17 -0400 Subject: [PATCH] Changed index size stats from ints to longs --- src/Nest/Domain/Stats/IndexSizeStats.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Nest/Domain/Stats/IndexSizeStats.cs b/src/Nest/Domain/Stats/IndexSizeStats.cs index 096dc18d218..521dfd30a8e 100644 --- a/src/Nest/Domain/Stats/IndexSizeStats.cs +++ b/src/Nest/Domain/Stats/IndexSizeStats.cs @@ -12,13 +12,13 @@ public class IndexSizeStats public string PrimarySize { get; set; } [JsonProperty(PropertyName = "primary_size_in_bytes")] - public int PrimarySizeInBytes { get; set; } + public long PrimarySizeInBytes { get; set; } [JsonProperty(PropertyName = "size")] public string Size { get; set; } [JsonProperty(PropertyName = "size_in_bytes")] - public int SizeInBytes { get; set; } + public long SizeInBytes { get; set; } } }