Jenkins Pipeline get stuck with status IN_PROGRESS

Hey guys, we have following problem. Our waitForQualityGate() timeout for some reason.
This is the log from the pipeline:

Checking status of SonarQube task 'AXF0C0xTD_slgVntv6qg' on server 'SonarQube'
SonarQube task 'AXF0C0xTD_slgVntv6qg' status is 'IN_PROGRESS'

When I look the information about recent deliveries of jenkins

{
  "serverUrl": "http://localhost:9000",
  "taskId": "AXF0C0xTD_slgVntv6qg",
  "status": "SUCCESS",
  "analysedAt": "2020-04-13T14:57:03+0000",
  "revision": "18a1f1ee462",
  "changedAt": "2020-04-13T14:57:03+0000",
  "project": {
    "key": "microservice-project",
    "name": "microservice",
    "url": "http://localhost:9000/dashboard?id=microservice-project"
  },
  "branch": {
    "name": "1",
    "type": "PULL_REQUEST",
    "isMain": false,
    "url": "http://localhost:9000/dashboard?id=microservice-project&pullRequest=1"
  },
  "qualityGate": {
    "name": "Sonar way",
    "status": "OK",
    "conditions": [
      {
        "metric": "new_reliability_rating",
        "operator": "GREATER_THAN",
        "value": "1",
        "status": "OK",
        "errorThreshold": "1"
      },
      {
        "metric": "new_security_rating",
        "operator": "GREATER_THAN",
        "value": "1",
        "status": "OK",
        "errorThreshold": "1"
      },
      {
        "metric": "new_maintainability_rating",
        "operator": "GREATER_THAN",
        "value": "1",
        "status": "OK",
        "errorThreshold": "1"
      },
      {
        "metric": "new_coverage",
        "operator": "LESS_THAN",
        "status": "NO_VALUE",
        "errorThreshold": "80"
      },
      {
        "metric": "new_duplicated_lines_density",
        "operator": "GREATER_THAN",
        "status": "NO_VALUE",
        "errorThreshold": "3"
      }
    ]
  },
  "properties": {}
}

Server version: 8.2.0.32929
Gradle plugin version: 2.8
Jenkins plugin: SonarQube Scanner for Jenkins version: 2.11

Hi,

When I look at our most recent webhook delivery, I see this:

What does your say about the response?

 
Ann

This is the latest response:
image

This is from the Jenkins pipeline

[Pipeline] // withSonarQubeEnv
[Pipeline] waitForQualityGate
18:12:09 Checking status of SonarQube task 'AXF0GQEUD_slgVntv6q9' on server 'SonarQube'
18:12:09 SonarQube task 'AXF0GQEUD_slgVntv6q9' status is 'IN_PROGRESS'
18:27:41 Cancelling nested steps due to timeout
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[Pipeline] // timeout

Hi,

It seems that this may be relevant:

SONARJNKNS-320 - waitForQualityGate could get stuck

Feel free to watch/vote.

 
Ann