MediaLive Input loss behavior not working as expected.
Hello! We're using MediaLive for livestreaming the output of MediaConnect streams. We have 2 redundant streams coming out of MediaConnect and into standard MediaLive channel. This channel is handling switching if one of the streams is unavailable. We also configured input loss behavior to display when BOTH of the inputs are down.
```
"globalConfiguration": {
"supportLowFramerateInputs": "DISABLED",
"inputEndAction": "NONE",
"outputTimingSource": "INPUT_CLOCK",
"inputLossBehavior": {
"repeatFrameMsec": 1000,
"blackFrameMsec": 10000,
"inputLossImageType": "SLATE",
"inputLossImageColor": "000000",
"inputLossImageSlate": {
"uri": "<technical difficulties image.png>"
}
```
While testing, we noticed that disabling one of the inputs makes the channel to properly switch to the other one. But when we disable the second one, streaming stops without displaying the slate image (then repeats last 10 seconds of stream).
When I was testing the same configuration as above on single pipeline channel, it was working fine.
Do you know what might be the issue?