summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2016-09-22 07:10:50 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2016-09-22 07:10:50 -0500
commitd7587a67ebd5e2aaf0b2d2718b73621e4f6811dd (patch)
tree842cbc410523a95876eb700bb11cdd82d13e992a
parent94b705f9fbed1a7d226dd3a08a6cfaaff668cfb3 (diff)
parent10c180760ccd34e39d8cd3a8ca48cfde7adb7a84 (diff)
Merge "res_odbc: Make pooling option deprecation notice more useful." into 13
-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")) {