Repository: phoenix Updated Branches: refs/heads/master 9c4d945e1 -> 192ebafe6
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/192ebafe Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/192ebafe Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/192ebafe Branch: refs/heads/master Commit: 192ebafe615698967ac297d32e1d6743b0ad3823 Parents: 9c4d945 Author: James Taylor <[email protected]> Authored: Tue Nov 25 22:04:11 2014 -0800 Committer: James Taylor <[email protected]> Committed: Tue Nov 25 22:06:08 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/192ebafe/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; }
