We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be43ec6 commit 823c5b4Copy full SHA for 823c5b4
internal/command/meta_backend.go
@@ -1622,7 +1622,10 @@ func (m *Meta) prepareBackend(root *configs.Module) (backendrun.OperationsBacken
1622
// there is no config; defaults to local state storage
1623
opts = &BackendOpts{}
1624
}
1625
- opts.Init = false // To be explicit- this method should not be used in init commands!
+
1626
+ // This method should not be used for init commands,
1627
+ // so we always set this value as false.
1628
+ opts.Init = false
1629
1630
// Load the backend
1631
be, beDiags := m.Backend(opts)
0 commit comments