Live video on the AT Protocol
79
fork

Configure Feed

Select the types of activity you want to include in your feed.

multitest: handle RTMP server failures

+2
+1
js/desktop/src/tests/test-runner.ts
··· 69 69 testEnv.env = { 70 70 SP_HTTP_ADDR: `127.0.0.1:${randomPort()}`, 71 71 SP_HTTP_INTERNAL_ADDR: `127.0.0.1:${randomPort()}`, 72 + SP_RTMP_ADDR: `127.0.0.1:${randomPort()}`, 72 73 SP_DATA_DIR: tmpDir, 73 74 }; 74 75 }
+1
pkg/multitest/multitest_test.go
··· 116 116 env := map[string]string{ 117 117 "SP_HTTP_ADDR": fmt.Sprintf("127.0.0.1:%d", apiPort), 118 118 "SP_HTTP_INTERNAL_ADDR": fmt.Sprintf("127.0.0.1:%d", nextPort()), 119 + "SP_RTMP_ADDR": fmt.Sprintf("127.0.0.1:%d", nextPort()), 119 120 "SP_RELAY_HOST": strings.ReplaceAll(dev.PDSURL, "http://", "ws://"), 120 121 "SP_PLC_URL": dev.PLCURL, 121 122 "SP_DATA_DIR": dataDir,