summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2022-07-01 14:42:03 +0000
committerGitHub <noreply@github.com>2022-07-01 14:42:03 +0000
commitb00e65aa9c071428579a55f91a92f3702765ed85 (patch)
tree78e38666c85ebc80627caddee6a96aa7867c668b /libpod
parent21cd3b2ed270c7396157c4a85457842804d29a00 (diff)
parent7131c847238a166f04c122c254487a9d53e29d71 (diff)
downloadpodman-b00e65aa9c071428579a55f91a92f3702765ed85.tar.gz
podman-b00e65aa9c071428579a55f91a92f3702765ed85.tar.bz2
podman-b00e65aa9c071428579a55f91a92f3702765ed85.zip
Merge pull request #14799 from vrothberg/fix-build
fix build
Diffstat (limited to 'libpod')
-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