diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-08-04 13:30:21 +0200 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-08-04 13:30:21 +0200 |
commit | eedfd50f9661149f804f169c458b6ef25f96a834 (patch) | |
tree | 6fdaa538ca6f41b8e8db8f1b3fd0829bbfdd58e7 | |
parent | 3648c6a40c585e718bcfc0068cfa431e46f24a52 (diff) | |
download | libquotient-eedfd50f9661149f804f169c458b6ef25f96a834.tar.gz libquotient-eedfd50f9661149f804f169c458b6ef25f96a834.zip |
Connection: stop the sync loop on SyncJob::failure
-rw-r--r-- | lib/connection.cpp | 7 |
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; } } |