mirror of https://github.com/databricks/cli.git
This commit is contained in:
parent
a2825ca89a
commit
a652b449cb
|
@ -63,7 +63,7 @@ func (l *logger) setExecutionContext(ec protos.ExecutionContext) {
|
||||||
func Upload(ctx context.Context, cfg *config.Config) error {
|
func Upload(ctx context.Context, cfg *config.Config) error {
|
||||||
l := fromContext(ctx)
|
l := fromContext(ctx)
|
||||||
if len(l.logs) == 0 {
|
if len(l.logs) == 0 {
|
||||||
return fmt.Errorf("no logs to upload")
|
return errors.New("no logs to upload")
|
||||||
}
|
}
|
||||||
|
|
||||||
protoLogs := make([]string, len(l.logs))
|
protoLogs := make([]string, len(l.logs))
|
||||||
|
|
Loading…
Reference in New Issue