Commit be315158 authored by Boris Kocherov's avatar Boris Kocherov

fix issue random "CancelError" if sheet contain cells with errors

parent d5848556
......@@ -317,7 +317,8 @@
scheme.execute = null;
scheme.hierarchies = [];
})
.push(undefined, function () {
.push(undefined, function (error) {
console.error(error);
scheme.execute = null;
scheme.hierarchies = [];
});
......@@ -621,8 +622,11 @@
})
.push(undefined, function (error) {
// issue in one cell(cubevalue) not stop calculation in other
return waiter()
.then(function () {
return new RSVP.Queue()
.push(function () {
return waiter();
})
.push(function () {
return error_handler(current_cell_id)(error);
});
});
......
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