[test] Fix fst_session_park() to wait for CF_PARK instead of CS_PARK. CF_PARK will be set when the channel has actually parked.
This commit is contained in:
parent
8e2234a205
commit
9e49a4176b
|
@ -141,7 +141,7 @@ static switch_status_t fst_init_core_and_modload(const char *confdir, const char
|
|||
*/
|
||||
#define fst_session_park(session) \
|
||||
switch_ivr_park_session(session); \
|
||||
switch_channel_wait_for_state(switch_core_session_get_channel(session), NULL, CS_PARK);
|
||||
switch_channel_wait_for_flag(switch_core_session_get_channel(session), CF_PARK, SWITCH_TRUE, 10000, NULL);
|
||||
|
||||
/**
|
||||
* check for test requirement - execute teardown on failure
|
||||
|
|
Loading…
Reference in New Issue