Skip to content

Commit

Permalink
Bump go-livepeer to latest (#656)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomshutt authored Sep 14, 2023
1 parent b96970e commit 7cbf14f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions config/catalyst-dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
2 changes: 2 additions & 0 deletions config/full-stack.json
Original file line number Diff line number Diff line change
Expand Up @@ -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:[email protected]:3004/api/stream/hook",
Expand Down
2 changes: 1 addition & 1 deletion manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ box:
strategy:
download: bucket
project: go-livepeer
commit: f601912befc863d508582ff12543ae46bc394c6e
commit: 30dcc8a9cd5f7091abd2c4569f53f6caa4d0bee5
binary: livepeer
release: master
archivePath: livepeer
Expand Down
5 changes: 4 additions & 1 deletion test/e2e/mist_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
Expand Down Expand Up @@ -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",
},
{
Expand Down

0 comments on commit 7cbf14f

Please sign in to comment.