[Asterisk-code-review] ccss.c: Replace space in taskprocessor name. (asterisk[11])

Richard Mudgett asteriskteam at digium.com
Fri Jan 8 14:01:53 CST 2016


Richard Mudgett has uploaded a new change for review.

  https://gerrit.asterisk.org/1938

Change subject: ccss.c: Replace space in taskprocessor name.
......................................................................

ccss.c: Replace space in taskprocessor name.

The CLI "core ping taskprocessor" command does not work very
well with taskprocessor names that have spaces in them.  You
have to put quotes around the name so using tab completion
becomes awkward.

Change-Id: I29e806dd0a8a0256f4e2e0a7ab88c9e19ab0eda0
---
M main/ccss.c
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/38/1938/1

diff --git a/main/ccss.c b/main/ccss.c
index aeb902d..8e800c5 100644
--- a/main/ccss.c
+++ b/main/ccss.c
@@ -4560,7 +4560,7 @@
 					"Create generic monitor container"))) {
 		return -1;
 	}
-	if (!(cc_core_taskprocessor = ast_taskprocessor_get("CCSS core", TPS_REF_DEFAULT))) {
+	if (!(cc_core_taskprocessor = ast_taskprocessor_get("CCSS_core", TPS_REF_DEFAULT))) {
 		return -1;
 	}
 	if (!(cc_sched_context = ast_sched_context_create())) {

-- 
To view, visit https://gerrit.asterisk.org/1938
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I29e806dd0a8a0256f4e2e0a7ab88c9e19ab0eda0
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: 11
Gerrit-Owner: Richard Mudgett <rmudgett at digium.com>



More information about the asterisk-code-review mailing list