Repository: phoenix Updated Branches: refs/heads/4.0 9430273c2 -> a3850e7fc
PHOENIX-1408 Don't disable table before modifying HTable metadata Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/a3850e7f Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/a3850e7f Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/a3850e7f Branch: refs/heads/4.0 Commit: a3850e7fcfa4642d6d54ddaa42c244971c9699ff Parents: 9430273 Author: James Taylor <[email protected]> Authored: Tue Nov 25 22:04:11 2014 -0800 Committer: James Taylor <[email protected]> Committed: Tue Nov 25 22:04:11 2014 -0800 ---------------------------------------------------------------------- .../main/java/org/apache/phoenix/query/QueryServicesOptions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/a3850e7f/phoenix-core/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java b/phoenix-core/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java index 7cfa3aa..8088e2d 100644 --- a/phoenix-core/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java +++ b/phoenix-core/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java @@ -488,7 +488,7 @@ public class QueryServicesOptions { } public QueryServicesOptions setDelayInMillisForSchemaChangeCheck(long delayInMillis) { - config.setLong(NUM_RETRIES_FOR_SCHEMA_UPDATE_CHECK, delayInMillis); + config.setLong(DELAY_FOR_SCHEMA_UPDATE_CHECK, delayInMillis); return this; }
