aboutsummaryrefslogtreecommitdiff
path: root/libpod/runtime_volume_linux.go
diff options
context:
space:
mode:
authorValentin Rothberg <vrothberg@redhat.com>2022-07-01 14:01:31 +0200
committerValentin Rothberg <vrothberg@redhat.com>2022-07-01 14:20:31 +0200
commit7131c847238a166f04c122c254487a9d53e29d71 (patch)
tree1485118efa66676abfae34f67aea7f783f8765a9 /libpod/runtime_volume_linux.go
parent7688c5ac63ae33e3caa7fe00b122f95bf60abdd5 (diff)
downloadpodman-7131c847238a166f04c122c254487a9d53e29d71.tar.gz
podman-7131c847238a166f04c122c254487a9d53e29d71.tar.bz2
podman-7131c847238a166f04c122c254487a9d53e29d71.zip
fix build
PR containers/podman/pull/14449 had an outdated base. Merging it broke builds. [NO NEW TESTS NEEDED] Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
Diffstat (limited to 'libpod/runtime_volume_linux.go')
-rw-r--r--libpod/runtime_volume_linux.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/runtime_volume_linux.go b/libpod/runtime_volume_linux.go
index 4fd4f7301..da8c3712d 100644
--- a/libpod/runtime_volume_linux.go
+++ b/libpod/runtime_volume_linux.go
@@ -183,7 +183,7 @@ func (r *Runtime) UpdateVolumePlugins(ctx context.Context) *define.VolumeReload
)
for driverName, socket := range r.config.Engine.VolumePlugins {
- driver, err := volplugin.GetVolumePlugin(driverName, socket)
+ driver, err := volplugin.GetVolumePlugin(driverName, socket, 0)
if err != nil {
errs = append(errs, err)
continue