Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added selfstream flag to stream request so correct command is executed #1389

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api/worker_grpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -704,6 +704,7 @@ func CreateStreamRequest(daoWrapper dao.DaoWrapper, stream model.Stream, course
StreamName: slot.StreamName,
IngestServer: server.Url,
OutUrl: server.OutUrl,
SelfStream: stream.IsSelfStream(),
}
workerIndex := getWorkerWithLeastWorkload(workers)
workers[workerIndex].Workload += 3
Expand Down
1 change: 1 addition & 0 deletions worker/api/api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ message StreamRequest {
string StreamName = 13;
string IngestServer = 14;
string OutUrl = 15;
bool SelfStream = 16;
}

message PremiereRequest {
Expand Down
Loading
Loading