From ab9e70c432d3dd7497b9ed7769382213c25e4681 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Mon, 21 Jun 2021 09:21:15 +0100 Subject: [PATCH] Convert --fast-sync back to a flag It got turned into a bool in 8225864a6e3daa, probably by accident. --- lib/runc_sandbox.ml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/runc_sandbox.ml b/lib/runc_sandbox.ml index b8f9d526..231b0e8f 100644 --- a/lib/runc_sandbox.ml +++ b/lib/runc_sandbox.ml @@ -336,10 +336,9 @@ open Cmdliner let fast_sync = Arg.value @@ - Arg.opt Arg.bool false @@ + Arg.flag @@ Arg.info ~doc:"Ignore sync syscalls (requires runc >= 1.0.0-rc92)" - ~docv:"FAST_SYNC" ["fast-sync"] let cmdliner : config Term.t =