[asterisk-commits] ccss.c: Replace space in taskprocessor name. (asterisk[13])

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Jan 12 13:17:47 CST 2016


Joshua Colp has submitted this change and it was merged.

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(-)

Approvals:
  Kevin Harwell: Looks good to me, but someone else must approve
  Anonymous Coward #1000019: Verified
  Joshua Colp: Looks good to me, approved



diff --git a/main/ccss.c b/main/ccss.c
index 0605810..f39eed9 100644
--- a/main/ccss.c
+++ b/main/ccss.c
@@ -4663,7 +4663,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/1941
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I29e806dd0a8a0256f4e2e0a7ab88c9e19ab0eda0
Gerrit-PatchSet: 2
Gerrit-Project: asterisk
Gerrit-Branch: 13
Gerrit-Owner: Richard Mudgett <rmudgett at digium.com>
Gerrit-Reviewer: Anonymous Coward #1000019
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Kevin Harwell <kharwell at digium.com>



More information about the asterisk-commits mailing list