From 749376645a64bd37fc545e137c8a68d1c96bb463 Mon Sep 17 00:00:00 2001 From: Nick White Date: Mon, 31 May 2021 13:27:52 +0100 Subject: Fix bug after changing pipeliner for tests, to ensure DeleteObjects is available to Pipeliner --- cmd/rescribe/main.go | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd/rescribe/main.go') diff --git a/cmd/rescribe/main.go b/cmd/rescribe/main.go index a471b1f..606a9a7 100644 --- a/cmd/rescribe/main.go +++ b/cmd/rescribe/main.go @@ -49,6 +49,7 @@ func (w NullWriter) Write(p []byte) (n int, err error) { type Clouder interface { Init() error ListObjects(bucket string, prefix string) ([]string, error) + DeleteObjects(bucket string, keys []string) error Download(bucket string, key string, fn string) error Upload(bucket string, key string, path string) error CheckQueue(url string, timeout int64) (bookpipeline.Qmsg, error) -- cgit v1.2.1-24-ge1ad