Skip to content

Commit

Permalink
remove validation for uppercases in indexnames, aliases are still all…
Browse files Browse the repository at this point in the history
…owed to have uppercase in them (elastic#2520)
  • Loading branch information
Mpdreamz authored and awelburn committed Nov 6, 2017
1 parent 0cd4ff0 commit 5e10900
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ private static void ValidateIndexName(string indexName)
+ "or set a default index using ConnectionSettings.DefaultIndex()."
);

if (indexName.HasAny(char.IsUpper))
throw new ArgumentException($"Index names cannot contain uppercase characters: {indexName}.");
}
}
}

0 comments on commit 5e10900

Please sign in to comment.