Skip to content

Commit e9089bf

Browse files
authored
Merge pull request #179 from psafont/rpclib_7
* CP-34942: update for rpclib 7 and 8 compatibility Signed-off-by: Pau Ruiz Safont <[email protected]>
2 parents 9a6a4fa + c8d5602 commit e9089bf

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+
; is_notification= 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+
; is_notification= false
14011406
}
14021407
in
14031408
let _ = do_call call in

0 commit comments

Comments
 (0)