Repository: incubator-blur Updated Branches: refs/heads/master b6000cd2b -> 26563dd0c
Removing a validation that is no longer required. Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/26563dd0 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/26563dd0 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/26563dd0 Branch: refs/heads/master Commit: 26563dd0c97bbf394cc274fbf6e975854bd867d9 Parents: b6000cd Author: Aaron McCurry <[email protected]> Authored: Thu Jan 29 14:17:36 2015 -0500 Committer: Aaron McCurry <[email protected]> Committed: Thu Jan 29 14:17:36 2015 -0500 ---------------------------------------------------------------------- blur-core/src/main/java/org/apache/blur/utils/BlurUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/26563dd0/blur-core/src/main/java/org/apache/blur/utils/BlurUtil.java ---------------------------------------------------------------------- diff --git a/blur-core/src/main/java/org/apache/blur/utils/BlurUtil.java b/blur-core/src/main/java/org/apache/blur/utils/BlurUtil.java index 9d5fff0..dfd2043 100644 --- a/blur-core/src/main/java/org/apache/blur/utils/BlurUtil.java +++ b/blur-core/src/main/java/org/apache/blur/utils/BlurUtil.java @@ -704,7 +704,7 @@ public class BlurUtil { FileSystem fileSystem = tablePath.getFileSystem(configuration); if (createPath(fileSystem, tablePath)) { LOG.info("Table uri existed."); - validateShardCount(shardCount, fileSystem, tablePath); +// validateShardCount(shardCount, fileSystem, tablePath); } ThreadWatcher.resetStatus(); }
