PR status not getting reported back to github

  • Sonar version: Community Editionv9.9.8 (build 100196)
  • Deployed: via zip on an ec2 instance
  • Expecting sonar to return status check back to github

This has been working for years, but suddenly last week it broke. Earlier version used for Sonar was Community EditionVersion 9.9.3 (build 79811) which was upgraded to Community Editionv9.9.8 (build 100196)

Github PRs are stuck at:
** Sonarqube Results Expected — Waiting for status to be reported**

Jenkins script:
        stage("Quality Analysis") {
            steps {
                script {
                    def commit_id = sh(script: "cd ${GITHUB_REPO} && git rev-parse HEAD", returnStdout: true).trim();
                    def scannerHome = tool 'SonarQube';
                    withSonarQubeEnv("SonarQube Scanner") {
                        sh "cd ${GITHUB_REPO} && ${scannerHome}/bin/sonar-scanner \
                            -Dsonar.projectKey=${env.GITHUB_REPO} \
                            -Dsonar.scm.revision=${commit_id} \
                            -Dsonar.python.version=3.9"
                    }
                }
            }
        }
    }

Has anything changed recently that could have caused this error?

Cannot see any errors in ce.log

ce[AZbw1X9CTN6x46Ng16DD][o.s.c.t.s.ComputationStepExecutor] Compute Quality profile measures | status=SUCCESS | time=0ms
ce[AZbw1X9CTN6x46Ng16DD][o.s.c.t.s.ComputationStepExecutor] Generate Quality profile events | status=SUCCESS | time=9ms
ce[AZbw1X9CTN6x46Ng16DD][o.s.c.t.s.ComputationStepExecutor] Generate Quality gate events | status=SUCCESS | time=10ms

I tried increasing the Log level and got the following, any pointers to if that could be the issue:

2025.05.21 03:27:40 TRACE ce[AZbw4eCGTN6x46Ng16DE][o.s.c.p.PriorityBeanFactory] 
Ignoring constructor 
[public org.sonar.ce.task.projectanalysis.step.LoadMeasureComputersStep(
    org.sonar.ce.task.projectanalysis.measure.MutableMeasureComputersHolder,
    org.sonar.api.measures.Metrics[],
    org.sonar.api.ce.measure.MeasureComputer[]
)] 
of bean 
'jdk.internal.loader.ClassLoaders$AppClassLoader@5ffd2b27-org.sonar.ce.task.projectanalysis.step.LoadMeasureComputersStep': 

org.springframework.beans.factory.UnsatisfiedDependencyException: 
Error creating bean with name 
'jdk.internal.loader.ClassLoaders$AppClassLoader@5ffd2b27-org.sonar.ce.task.projectanalysis.step.LoadMeasureComputersStep': 
Unsatisfied dependency expressed through constructor parameter 2; 

nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: 
No qualifying bean of type 'org.sonar.api.ce.measure.MeasureComputer[]' available: 
expected at least 1 bean which qualifies as autowire candidate. 

Dependency annotations: {}

Hey there.

If you’re using Community Edition/Build with branch analysis, you’re using a third-party plugin to enable it which is not supported in this Community. You’ll have to go speak with the maintainer.