diff --git a/client/app/services/query-result.js b/client/app/services/query-result.js index 4680f03b6a..2d32322c51 100644 --- a/client/app/services/query-result.js +++ b/client/app/services/query-result.js @@ -403,8 +403,13 @@ 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); }); }