Skip to content

Commit

Permalink
Retry fetching query result on failure (fixes #36)
Browse files Browse the repository at this point in the history
  • Loading branch information
Allen Short committed Feb 6, 2018
1 parent 1682c48 commit 0e2cb6f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions client/app/services/query-result.js
Original file line number Diff line number Diff line change
Expand Up @@ -465,8 +465,16 @@ function QueryResultService($resource, $timeout, $q) {
}
}, (error) => {
logger('Connection error', error);
// TODO: use QueryResultError, or better yet: exception/reject of promise.
this.update({ job: { error: 'failed communicating with server. Please check your Internet connection and try again.', status: 4 } });
this.update({
job: {
error: 'Failed communicating with server. Retrying...',
status: 4,
id: this.job.id,
},
});
$timeout(() => {
this.refreshStatus(query);
}, 3000);
});
}

Expand Down

0 comments on commit 0e2cb6f

Please sign in to comment.