From eeb758f406f0cc27ab7863dc17eec00c24f2c0b6 Mon Sep 17 00:00:00 2001 From: John Estabrook Date: Wed, 2 Apr 2025 21:41:13 -0500 Subject: T7302: add dry_run field and update branch --- src/vyconf_client.ml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/vyconf_client.ml') diff --git a/src/vyconf_client.ml b/src/vyconf_client.ml index 1f00f29..7380760 100644 --- a/src/vyconf_client.ml +++ b/src/vyconf_client.ml @@ -135,7 +135,9 @@ let delete client path = | _ -> Error (Option.value resp.error ~default:"") |> Lwt.return let commit client = - let req = Commit {confirm=None; confirm_timeout=None; comment=None;} in + let req = + Commit {confirm=None; confirm_timeout=None; comment=None; dry_run=None} + in let%lwt resp = do_request client req in match resp.status with | Success -> Ok (Option.value resp.output ~default:"") |> Lwt.return -- cgit v1.2.3