Skip to content
Merged
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
10 changes: 9 additions & 1 deletion server/pkg/discovery.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,14 +140,22 @@ func (d *taskDiscovery) processSPYTStandaloneClusterOperation(ctx context.Contex
for _, t := range []struct {
taskName string
dir string
service string
}{
{
taskName: "master",
dir: "webui",
service: "ui",
},
{
taskName: "master",
dir: "rest",
service: "rest-api",
},
{
taskName: "history",
dir: "shs",
service: "ui",
},
} {
var nodes []string
Expand All @@ -172,7 +180,7 @@ func (d *taskDiscovery) processSPYTStandaloneClusterOperation(ctx context.Contex
tasks = append(tasks, Task{
operationID: op.ID.String(),
taskName: t.taskName,
service: "ui",
service: t.service,
jobs: jobs,
protocol: HTTP,
})
Expand Down
Loading