We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29e033d commit efb1691Copy full SHA for efb1691
ocaml/xapi/xapi.ml
@@ -77,6 +77,9 @@ let populate_db backend =
77
then [ Parse_db_conf.make Xapi_globs.db_temporary_restore_path ]
78
else output_connections
79
in
80
+ debug "Attempting to populate database from one of these locations: [%s]"
81
+ (String.concat "; "
82
+ (List.map (fun conn -> conn.Parse_db_conf.path) input_connections));
83
Db_cache_impl.make backend input_connections schema;
84
Db_cache_impl.sync output_connections (Db_ref.get_database backend);
85
(* Delete the temporary restore file so that we don't revert to it again at next startup. *)
0 commit comments