浏览代码

Discard unwanted crash dumps more eagerly

Do not try to upload the crash dump again if the server didn't want the
crash dump for some reason.
Vincent Lang 9 年之前
父节点
当前提交
b76294de18
共有 1 个文件被更改,包括 6 次插入4 次删除
  1. 6 4
      src/tools/helper/CrashUploader.cpp

+ 6 - 4
src/tools/helper/CrashUploader.cpp

@@ -104,11 +104,13 @@ void CrashUploader::uploadCrashDump(const QString& version, const QString& path)
   {
     QVariant statusCode = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute);
 
-    // if we get a 503 code it means that we are either sending crashes to quickly or that
-    // the server doesn't want these any more. In any case we can just discard it and move
-    // forward with our lives.
+    // The only situation in which we retry a failed crash dump upload is when
+    // we get a 503 http status code (we got throttled because we are sending
+    // crashes to quickly), or if the network was unavailable (no status code).
+    // If the server returns any other error, it doesn't want the crash report,
+    // and we just drop it.
     //
-    if (!statusCode.isValid() || (statusCode.toInt() != 200 && statusCode.toInt() != 503))
+    if (!statusCode.isValid() || statusCode.toInt() == 503)
     {
       QLOG_WARN() << "Failed to submit report with uuid:" << uuid << "will try again later";
       moveFileBackToIncoming(version, inProgressPath);