aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2020-08-04 13:30:21 +0200
committerKitsune Ral <Kitsune-Ral@users.sf.net>2020-08-04 13:30:21 +0200
commiteedfd50f9661149f804f169c458b6ef25f96a834 (patch)
tree6fdaa538ca6f41b8e8db8f1b3fd0829bbfdd58e7
parent3648c6a40c585e718bcfc0068cfa431e46f24a52 (diff)
downloadlibquotient-eedfd50f9661149f804f169c458b6ef25f96a834.tar.gz
libquotient-eedfd50f9661149f804f169c458b6ef25f96a834.zip
Connection: stop the sync loop on SyncJob::failure
-rw-r--r--lib/connection.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp
index 46494a56..4530d95a 100644
--- a/lib/connection.cpp
+++ b/lib/connection.cpp
@@ -508,7 +508,9 @@ void Connection::sync(int timeout)
retriesTaken, nextInMilliseconds);
});
connect(job, &SyncJob::failure, this, [this, job] {
- d->syncJob = nullptr;
+ // SyncJob persists with retries on transient errors; if it fails,
+ // there's likely something serious enough to stop the loop.
+ stopSync();
if (job->error() == BaseJob::Unauthorised) {
qCWarning(SYNCJOB)
<< "Sync job failed with Unauthorised - login expired?";
@@ -742,7 +744,8 @@ void Connection::stopSync()
disconnect(d->syncLoopConnection);
if (d->syncJob) // If there's an ongoing sync job, stop it too
{
- d->syncJob->abandon();
+ if (d->syncJob->status().code == BaseJob::Pending)
+ d->syncJob->abandon();
d->syncJob = nullptr;
}
}