X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=ovsdb%2Fovsdb-server.c;h=b4f2e42e2b032834260c286dc99c97b1b38aa108;hb=c0a0ac4f414cd17caead7c1066b016ddbc28b9ce;hp=c7a93815b80346d92519e2bb1c2d0a3e12cf917e;hpb=6d37aaf186c9f4595258903241f4fa0175ecf6dd;p=openvswitch diff --git a/ovsdb/ovsdb-server.c b/ovsdb/ovsdb-server.c index c7a93815..b4f2e42e 100644 --- a/ovsdb/ovsdb-server.c +++ b/ovsdb/ovsdb-server.c @@ -39,6 +39,7 @@ #include "row.h" #include "stream-ssl.h" #include "stream.h" +#include "stress.h" #include "svec.h" #include "table.h" #include "timeval.h" @@ -87,6 +88,7 @@ main(int argc, char *argv[]) proctitle_init(argc, argv); set_program_name(argv[0]); + stress_init_command(); signal(SIGPIPE, SIG_IGN); process_init(); @@ -344,7 +346,7 @@ add_manager_options(struct shash *remotes, const struct ovsdb_row *row) if (read_integer_column(row, "max_backoff", &max_backoff)) { options->max_backoff = max_backoff; } - if (read_integer_column(row, "probe_interval", &probe_interval)) { + if (read_integer_column(row, "inactivity_probe", &probe_interval)) { options->probe_interval = probe_interval; } }