From a61f9fd54703c2e77ede4e0e1504f2e499eb5baf Mon Sep 17 00:00:00 2001 From: Sujil02 Date: Thu, 21 May 2020 18:23:12 -0400 Subject: Removes remote system reset functionality. skip e2e test for remote. As system reset too dangerous for remote use, deleting the functionality and the test case. Signed-off-by: Sujil02 --- pkg/domain/infra/tunnel/system.go | 5 ----- 1 file changed, 5 deletions(-) (limited to 'pkg/domain') diff --git a/pkg/domain/infra/tunnel/system.go b/pkg/domain/infra/tunnel/system.go index 829af31f6..109e6c1d7 100644 --- a/pkg/domain/infra/tunnel/system.go +++ b/pkg/domain/infra/tunnel/system.go @@ -27,11 +27,6 @@ func (ic *ContainerEngine) SystemPrune(ctx context.Context, options entities.Sys return system.Prune(ic.ClientCxt, &options.All, &options.Volume) } -// Reset removes all storage -func (ic *SystemEngine) Reset(ctx context.Context) error { - return system.Reset(ic.ClientCxt) -} - func (ic *ContainerEngine) SystemDf(ctx context.Context, options entities.SystemDfOptions) (*entities.SystemDfReport, error) { return system.DiskUsage(ic.ClientCxt) } -- cgit v1.2.3-54-g00ecf