Mixer creation fails in WCS 5.2.479.

sangsoo

Member
Hello.
I just updated the WCS server to check for the patch (5.2.474).
- "WCS-2267 | Added: AV Mixer C optimization"
I can't create a mixer stream after the latest 5.2.479 update. (previous 5.2.458)

1. The call to restapi method "/mixer/startup" fails.
rest-method :
upload_2020-1-30_15-54-58.png
response :
{
"exception": "com.flashphoner.rest.server.exception.InternalErrorException",
"path": "/rest-api/mixer/startup",
"error": "Internal Server Error",
"message": null,
"timestamp": 1580366734925,
"status": 500
}
2. The mixer startup exception log remains in the serverlog.
upload_2020-1-30_15-56-27.png

I think it's an update side effect.

Thanks.
 
Last edited:

Max

Administrator
Staff member
Good day.
"500 Internal server error" message usually means wrong request parameters. For example, the following bash script works in out test environment:
Code:
#!/bin/bash
MIXER=$1
STREAM=$2
WCS_ADDRESS=$3
curl --data "{\"uri\":\"mixer://${MIXER}\",\"localStreamName\":\"${MIXER}\"}" -X POST -H 'Content-type: application/json' -s http://$WCS_ADDRESS:9091/rest-api/mixer/startup
curl --data "{\"uri\":\"mixer://${MIXER}\",\"localStreamName\":\"${MIXER}\",\"remoteStreamName\":\"$STREAM\"}" -X POST -H 'Content-type: application/json' -s http://$WCS_ADDRESS:9091/rest-api/mixer/add
Code:
./mixerTest.sh mixer1 stream1 localhost
Please collect a full report as described here including REST query used example ansd send to support@flashphoner.com, we will check.
 

Max

Administrator
Staff member
We checked your log, reproduced the issue and raised internal ticket WCS-2479. We'll let you know when fix it.
 
Top