From 38f5d35e0d23323f79c67e167388e962cb159016 Mon Sep 17 00:00:00 2001 From: Keith Bostic Date: Wed, 15 Apr 2015 14:55:36 -0400 Subject: Change WT_CONNECTION.configure_method() to do the same name translation as wiredtiger_config_validate(), that is, specify a method name using the concatentation of the public handle name, a period and a method name, rather than using our internal configuration string names. Move the WT_CONNECTION.configure_method() code into config/config_api.c. --- ext/datasources/helium/helium.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/datasources/helium/helium.c b/ext/datasources/helium/helium.c index 3fc521d93b2..2b7cb5f7d4c 100644 --- a/ext/datasources/helium/helium.c +++ b/ext/datasources/helium/helium.c @@ -3427,7 +3427,7 @@ wiredtiger_extension_init(WT_CONNECTION *connection, WT_CONFIG_ARG *config) /* Add Helium-specific WT_SESSION.create configuration options. */ for (p = session_create_opts; *p != NULL; ++p) if ((ret = connection->configure_method(connection, - "session.create", "helium:", *p, "boolean", NULL)) != 0) + "WT_SESSION.create", "helium:", *p, "boolean", NULL)) != 0) EMSG_ERR(wtext, NULL, ret, "WT_CONNECTION.configure_method: session.create: " "%s: %s", -- cgit v1.2.1