mirror of https://github.com/databricks/cli.git
43 lines
930 B
Go
43 lines
930 B
Go
package lock
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/databricks/cli/bundle"
|
|
"github.com/databricks/cli/libs/log"
|
|
)
|
|
|
|
type release struct{}
|
|
|
|
func Release() bundle.Mutator {
|
|
return &release{}
|
|
}
|
|
|
|
func (m *release) Name() string {
|
|
return "lock:release"
|
|
}
|
|
|
|
func (m *release) Apply(ctx context.Context, b *bundle.Bundle) ([]bundle.Mutator, error) {
|
|
// Return early if locking is disabled.
|
|
if !b.Config.Bundle.Lock.IsEnabled() {
|
|
log.Infof(ctx, "Skipping; locking is disabled")
|
|
return nil, nil
|
|
}
|
|
|
|
// Return early if the locker is not set.
|
|
// It is likely an error occurred prior to initialization of the locker instance.
|
|
if b.Locker == nil {
|
|
log.Warnf(ctx, "Unable to release lock if locker is not configured")
|
|
return nil, nil
|
|
}
|
|
|
|
log.Infof(ctx, "Releasing deployment lock")
|
|
err := b.Locker.Unlock(ctx)
|
|
if err != nil {
|
|
log.Errorf(ctx, "Failed to release deployment lock: %v", err)
|
|
return nil, err
|
|
}
|
|
|
|
return nil, nil
|
|
}
|