mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-25 01:00:16 -05:00
Make backend.DeleteWorkspace accept a context (#782)
Signed-off-by: Marcin Wyszynski <marcin.pixie@gmail.com>
This commit is contained in:
@@ -366,7 +366,7 @@ func (b backendFailsConfigure) StateMgr(context.Context, string) (statemgr.Full,
|
||||
return nil, fmt.Errorf("StateMgr not implemented")
|
||||
}
|
||||
|
||||
func (b backendFailsConfigure) DeleteWorkspace(name string, _ bool) error {
|
||||
func (b backendFailsConfigure) DeleteWorkspace(_ context.Context, name string, _ bool) error {
|
||||
return fmt.Errorf("DeleteWorkspace not implemented")
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user