Skip to content

Commit de09270

Browse files
author
Christian Lindig
committed
CP-308455 VM.sysprep CA-414158 wait for "action" key to disappear
The code misses the timeout exception becaue of we are using a module alias. Signed-off-by: Christian Lindig <christian.lindig@cloud.com>
1 parent c7592d7 commit de09270

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ocaml/xapi/vm_sysprep.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ let trigger ~domid ~uuid ~timeout =
229229
debug "%s sysprep is finished" __FUNCTION__ ;
230230
Watch.(wait_for ~xs ~timeout (key_to_disappear domain)) ;
231231
true
232-
with Watch.Timeout _ ->
232+
with Watch.Timeout _ | Ezxenstore_core.Watch.Timeout _->
233233
debug "%s: sysprep timeout" __FUNCTION__ ;
234234
false
235235
)

0 commit comments

Comments
 (0)