Merge "Add FAILED: prefix to RBE Fatal error message"

This commit is contained in:
Treehugger Robot
2021-01-27 00:50:53 +00:00
committed by Gerrit Code Review

View File

@@ -106,7 +106,7 @@ func startRBE(ctx Context, config Config) {
cmd := Command(ctx, config, "startRBE bootstrap", rbeCommand(ctx, config, bootstrapCmd))
if output, err := cmd.CombinedOutput(); err != nil {
ctx.Fatalf("rbe bootstrap failed with: %v\n%s\n", err, output)
ctx.Fatalf("Unable to start RBE reproxy\nFAILED: RBE bootstrap failed with: %v\n%s\n", err, output)
}
}