Commit 7a70efe3 authored by Boris Kocherov's avatar Boris Kocherov

print sync issue

parent 5e959055
...@@ -43,6 +43,7 @@ ...@@ -43,6 +43,7 @@
})); }));
configuration = { configuration = {
debug: true,
type: "replicate", type: "replicate",
// XXX This drop the signature lists... // XXX This drop the signature lists...
query: { query: {
......
...@@ -77,7 +77,13 @@ ...@@ -77,7 +77,13 @@
var gadget = this; var gadget = this;
if (gadget.state.auto_repair) { if (gadget.state.auto_repair) {
return repair_and_redirect(gadget); return repair_and_redirect(gadget)
.push(undefined, function (e) {
if (e.name === "ReplicateReport") {
throw new Error(e.toString());
}
throw e;
});
} }
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment