diff --git a/config/catalyst-dev.json b/config/catalyst-dev.json index a6099eeea..824f3cae9 100644 --- a/config/catalyst-dev.json +++ b/config/catalyst-dev.json @@ -92,6 +92,8 @@ "metricsClientIP": true, "metricsPerStream": true, "monitor": true, + "cliAddr": "127.0.0.1:7935", + "httpAddr": "127.0.0.1:8935", "orchAddr": "localhost:8936", "rtmpAddr": "127.0.0.1:1936" }, diff --git a/config/full-stack.json b/config/full-stack.json index 4396af289..d653f9e58 100644 --- a/config/full-stack.json +++ b/config/full-stack.json @@ -82,6 +82,8 @@ "metricsClientIP": true, "metricsPerStream": true, "monitor": true, + "cliAddr": "127.0.0.1:7935", + "httpAddr": "127.0.0.1:8935", "orchAddr": "127.0.0.1:8936", "rtmpAddr": "127.0.0.1:1936", "authWebhookUrl": "http://9c2936b5-143f-4b10-b302-6a21b5f29c3d:f61b3cdb-d173-4a7a-a0d3-547b871a56f9@127.0.0.1:3004/api/stream/hook", diff --git a/manifest.yaml b/manifest.yaml index 0b5b357f8..22d52adab 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -47,7 +47,7 @@ box: strategy: download: bucket project: go-livepeer - commit: f601912befc863d508582ff12543ae46bc394c6e + commit: 30dcc8a9cd5f7091abd2c4569f53f6caa4d0bee5 binary: livepeer release: master archivePath: livepeer diff --git a/test/e2e/mist_config.go b/test/e2e/mist_config.go index e81ef2da6..6f97a3c87 100644 --- a/test/e2e/mist_config.go +++ b/test/e2e/mist_config.go @@ -35,6 +35,7 @@ type protocol struct { Broadcaster bool `json:"broadcaster,omitempty"` Orchestrator bool `json:"orchestrator,omitempty"` Transcoder bool `json:"transcoder,omitempty"` + HTTPRPCAddr string `json:"httpAddr,omitempty"` OrchAddr string `json:"orchAddr,omitempty"` ServiceAddr string `json:"serviceAddr,omitempty"` CliAddr string `json:"cliAddr,omitempty"` @@ -153,14 +154,16 @@ func defaultMistConfig(host, sourceOutput string) mistConfig { { Connector: "livepeer", Broadcaster: true, + CliAddr: "127.0.0.1:7935", + HTTPRPCAddr: "127.0.0.1:8935", OrchAddr: "127.0.0.1:8936", RtmpAddr: "127.0.0.1:1936", }, { Connector: "livepeer", - CliAddr: "127.0.0.1:7936", Orchestrator: true, Transcoder: true, + CliAddr: "127.0.0.1:7936", ServiceAddr: "127.0.0.1:8936", }, {