Skip to content

Commit 1be31d8

Browse files
committed
CP-34942: update for rpclib 7 compatibility
Signed-off-by: Pau Ruiz Safont <[email protected]>
1 parent 9a6a4fa commit 1be31d8

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

networkd/network_server.ml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1385,7 +1385,11 @@ module PVS_proxy = struct
13851385
let configure_site _dbg config =
13861386
debug "Configuring PVS proxy for site %s" config.site_uuid ;
13871387
let call =
1388-
{Rpc.name= "configure_site"; params= [Rpcmarshal.marshal t.ty config]}
1388+
{
1389+
Rpc.name= "configure_site"
1390+
; params= [Rpcmarshal.marshal t.ty config]
1391+
; notif= false
1392+
}
13891393
in
13901394
let _ = do_call call in
13911395
()
@@ -1398,6 +1402,7 @@ module PVS_proxy = struct
13981402
name= "remove_site"
13991403
; params=
14001404
[Dict [("site_uuid", Rpcmarshal.marshal Rpc.Types.string.ty uuid)]]
1405+
; notif= false
14011406
}
14021407
in
14031408
let _ = do_call call in

0 commit comments

Comments
 (0)