diff --git a/client/app/services/query-result.js b/client/app/services/query-result.js index 1ebe00b3f2..f91db0a9d1 100644 --- a/client/app/services/query-result.js +++ b/client/app/services/query-result.js @@ -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); }); }