- add entry to debian/changelog, with proper version
- commit
- git tag version
-- make dist, upload to ceph.newdream.net:ceph.newdream.net/downloads
- build debs for amd64, i386
+- make dist, upload to ceph.newdream.net:ceph.newdream.net/downloads
- email ml + post news entry
- rebase kclient_clean
\ No newline at end of file
OPTION(ms_fail_interval, 0, OPT_DOUBLE, 15.0), // fail after this long
OPTION(ms_die_on_failure, 0, OPT_BOOL, false),
OPTION(ms_nocrc, 0, OPT_BOOL, false),
+ OPTION(ms_die_on_bad_msg, 0, OPT_BOOL, false),
OPTION(mon_data, 0, OPT_STR, ""),
OPTION(mon_tick_interval, 0, OPT_INT, 5),
OPTION(mon_osd_down_out_interval, 0, OPT_INT, 300), // seconds
catch (buffer::error *e) {
dout(0) << "failed to decode message of type " << type << ": " << *e << dendl;
delete e;
- assert(0);
+ if (g_conf.ms_die_on_bad_msg)
+ assert(0);
return 0;
}