From 13e60c420d448a775ec224e5f4cc7d0ad1318dde Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Tue, 17 Mar 2015 14:10:36 -0500 Subject: [PATCH] FS-7513: don't want detach here --- src/mod/applications/mod_conference/mod_conference.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 1e50605220..860977d08e 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -11833,7 +11833,6 @@ static void launch_conference_video_muxing_thread(conference_obj_t *conference) if (!conference->video_muxing_thread) { switch_set_flag_locked(conference, CFLAG_RUNNING); switch_threadattr_create(&thd_attr, conference->pool); - switch_threadattr_detach_set(thd_attr, 1); switch_threadattr_priority_set(thd_attr, SWITCH_PRI_REALTIME); switch_threadattr_stacksize_set(thd_attr, SWITCH_THREAD_STACKSIZE); switch_set_flag(conference, CFLAG_VIDEO_MUXING);