summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2016-09-21 15:48:47 +0000
committerJoshua Colp <jcolp@digium.com>2016-09-21 11:05:34 -0500
commit10c180760ccd34e39d8cd3a8ca48cfde7adb7a84 (patch)
tree0552e0e0ba9b48d2e2ae1e830eb7d432a97bd511
parent5cb3fc5d6777b03ac29bb7aa41a9b04076577513 (diff)
res_odbc: Make pooling option deprecation notice more useful.
This changes the notice for the deprecation of the old pooling options to point to the new option for doing pooling. This gives a clearer direction as to what to look into. ASTERISK-26389 #close Change-Id: I2ca9cdfdcd75aec170a7db9d5ff69a4cd25b7c10
-rw-r--r--res/res_odbc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_odbc.c b/res/res_odbc.c
index 2477def5b..48273c4ac 100644
--- a/res/res_odbc.c
+++ b/res/res_odbc.c
@@ -523,7 +523,7 @@ static int load_odbc_config(void)
!strncasecmp(v->name, "share", 5) ||
!strcasecmp(v->name, "limit") ||
!strcasecmp(v->name, "idlecheck")) {
- ast_log(LOG_WARNING, "The 'pooling', 'shared_connections', 'limit', and 'idlecheck' options are deprecated. Please see UPGRADE.txt for information\n");
+ ast_log(LOG_WARNING, "The 'pooling', 'shared_connections', 'limit', and 'idlecheck' options were replaced by 'max_connections'. See res_odbc.conf.sample.\n");
} else if (!strcasecmp(v->name, "enabled")) {
enabled = ast_true(v->value);
} else if (!strcasecmp(v->name, "pre-connect")) {