Merge branch '17816-singularity-cwd' into main refs #17816
[arvados.git] / lib / crunchrun / crunchrun.go
index 08e4aa3899ec46ca68d86d5ef1ea930057830c00..412f1bbfbfa95027eb5c043c5e1fcf07449139b0 100644 (file)
@@ -55,7 +55,7 @@ var ErrCancelled = errors.New("Cancelled")
 
 // IKeepClient is the minimal Keep API methods used by crunch-run.
 type IKeepClient interface {
-       PutB(buf []byte) (string, int, error)
+       BlockWrite(context.Context, arvados.BlockWriteOptions) (arvados.BlockWriteResponse, error)
        ReadAt(locator string, p []byte, off int) (int, error)
        ManifestFileReader(m manifest.Manifest, filename string) (arvados.File, error)
        LocalLocator(locator string) (string, error)