Skip to content

Commit

Permalink
Merge pull request xapi-project#5 from djs55/xcp-iface-change
Browse files Browse the repository at this point in the history
Update to new XCP shared library
  • Loading branch information
djs55 committed Feb 16, 2013
2 parents eb0c63f + 42a4884 commit b227a95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/squeezed.ml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ let minor_version = 1

let balance_check_interval = ref 10.

let config_spec = [
let options = [
"balance-check-interval", Arg.Set_float balance_check_interval, (fun () -> string_of_float !balance_check_interval), "Seconds between memory balancing attempts";
]

let _ =
debug "squeezed version %d.%d starting" major_version minor_version;

configure config_spec;
configure ~options ();
let socket = listen Memory_interface.json_path in
daemonize ();

Expand Down

0 comments on commit b227a95

Please sign in to comment.