I deploy MSSQL database to the AKS successfully, I can connect from local machine to the SQL DB on the AKS successfully. After that I deploy the Sonarqube version community and do some configure exactly the official document guide.
- SonarQube database installation
Create a empty schema and user then - Setup some values
SONARQUBE_JDBC_USERNAME: sonarqube
SONARQUBE_JDBC_PASSWORD: sonarqube
SONARQUBE_JDBC_URL: “jdbc:sqlserver://xxx.xxx;database=sonarqube;”
Where xxx.xxx is external IP of the SQL Database which I deployed above. - Deploy the Sonar to the AKS without errors and carefully see the logs but there is no exception or failure. It only has the log point to the H2 database as below
2024.06.07 14:10:40 INFO web[][o.s.p.ProcessEntryPoint] Starting Web Server
2024.06.07 14:10:42 INFO web[][o.s.s.a.TomcatHttpConnectorFactory] Starting Tomcat on port 9000
2024.06.07 14:10:46 INFO web[][o.s.s.p.LogServerVersion] SonarQube Server / 10.5.0.89998 / 467958cf86768ab466efd1d7161f33ad764f8805
2024.06.07 14:10:48 INFO web[][o.s.s.p.d.EmbeddedDatabase] Starting embedded database on port 9092 with url jdbc:h2:tcp://127.0.0.1:9092/sonar;NON_KEYWORDS=VALUE
2024.06.07 14:10:48 INFO web[][o.s.s.p.d.EmbeddedDatabase] Embedded database started. Data stored in: /opt/sonarqube/data
2024.06.07 14:10:48 INFO web[][o.s.d.DefaultDatabase] Create JDBC data source for jdbc:h2:tcp://127.0.0.1:9092/sonar;NON_KEYWORDS=VALUE
2024.06.07 14:10:48 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Starting...
2024.06.07 14:10:48 INFO web[][c.z.h.p.HikariPool] HikariPool-1 - Added connection conn2: url=jdbc:h2:tcp://127.0.0.1:9092/sonar user=
2024.06.07 14:10:48 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Start completed.
2024.06.07 14:10:48 WARN web[][o.s.db.dialect.H2] H2 database should be used for evaluation purpose only.
2024.06.07 14:10:55 INFO web[][o.s.s.p.ServerFileSystemImpl] SonarQube home: /opt/sonarqube
2024.06.07 14:10:55 INFO web[][o.s.s.u.SystemPasscodeImpl] System authentication by passcode is disabled
2024.06.07 14:10:56 INFO web[][o.s.s.p.d.m.h.MigrationHistoryTableImpl] Creating table schema_migrations
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy C# Code Quality and Security / 9.23.2.88755 / 7727153bb92db16ac5dedac33bfbbe6bb51e9666
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy Clean as You Code / 2.3.0.1782 / 1db4e32c08cf9d0b999498e7ba4fd5849583dfdd
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy Flex Code Quality and Security / 2.12.0.4568 / e8b2821a05db57b79b8ae85e3db1571f5b744273
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy Go Code Quality and Security / 1.15.0.4655 / 28938525c4093d5e9fa4e858535bbcb60af7f066
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy HTML Code Quality and Security / 3.15.0.5107 / 2b98639c1367f85365fef88c2ba41ae5f19dfd66
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy IaC Code Quality and Security / 1.27.0.9518 / null
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy JaCoCo / 1.3.0.1538 / 74a7798c7cea687c72ed9df40c93eb7ea2a58c49
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy Java Code Quality and Security / 7.33.0.35775 / 0614cc7e6978a72c551bd3116b14036eb3ae991e
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy JavaScript/TypeScript/CSS Code Quality and Security / 10.13.2.25981 / 5950215f3a0c4790a0fa13b26d5040f60f3eab2c
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy Kotlin Code Quality and Security / 2.20.0.4382 / eb22cc4ed915de84e358135dd3f2ea2080de1441
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy PHP Code Quality and Security / 3.35.0.11659 / d830de9e38c9269851c1afefe12b8324c1481baf
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy Python Code Quality and Security / 4.17.0.14845 / 60c11ea38cb028885067563b4ea10f4b031c697a
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy Ruby Code Quality and Security / 1.15.0.4655 / 28938525c4093d5e9fa4e858535bbcb60af7f066
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy Scala Code Quality and Security / 1.15.0.4655 / 28938525c4093d5e9fa4e858535bbcb60af7f066
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy Text Code Quality and Security / 2.10.0.2188 / null
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy VB.NET Code Quality and Security / 9.23.2.88755 / 7727153bb92db16ac5dedac33bfbbe6bb51e9666
2024.06.07 14:10:56 INFO web[][o.s.s.p.ServerPluginManager] Deploy XML Code Quality and Security / 2.10.0.4108 / 34b16ba369117f6befc0b1e0866a069a80f6db2e
2024.06.07 14:11:00 INFO web[][o.s.s.e.EsClientProvider] Connected to local Elasticsearch: [http://localhost:9001]
2024.06.07 14:11:02 WARN web[][o.s.a.s.w.WebService$Action] Description is not set on action api/monitoring/metrics
2024.06.07 14:11:02 WARN web[][o.s.a.s.w.WebService$Action] Since is not set on action api/monitoring/metrics
2024.06.07 14:11:02 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/monitoring/metrics
2024.06.07 14:11:02 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/system/liveness
2024.06.07 14:11:02 INFO web[][o.s.s.p.d.m.AutoDbMigration] Automatically perform DB migration on fresh install
2024.06.07 14:11:03 INFO web[][DbMigrations] Executing DB migrations...
2024.06.07 14:11:03 INFO web[][DbMigrations] #1 'Create initial schema'...
2024.06.07 14:11:04 INFO web[][DbMigrations] #1 'Create initial schema': success | time=1397ms
2024.06.07 14:11:04 INFO web[][DbMigrations] #2 'Populate initial schema'...
2024.06.07 14:11:04 INFO web[][DbMigrations] #2 'Populate initial schema': success | time=193ms
2024.06.07 14:11:04 INFO web[][DbMigrations] #100000 'Remove orphan rules in Quality Profiles'...
2024.06.07 14:11:04 INFO web[][o.s.s.p.d.m.s.MassUpdate] 0 rows processed (0 items/sec)
2024.06.07 14:11:04 INFO web[][DbMigrations] #100000 'Remove orphan rules in Quality Profiles': success | time=91ms
2024.06.07 14:11:04 INFO web[][DbMigrations] #100001 'Drop index 'projects_module_uuid' in the 'Components' table'...
2024.06.07 14:11:04 INFO web[][DbMigrations] #100001 'Drop index 'projects_module_uuid' in the 'Components' table': success | time=5ms
2024.06.07 14:11:04 INFO web[][DbMigrations] #100002 'Drop column 'module_uuid' in the 'Components' table'...
2024.06.07 14:11:04 INFO web[][DbMigrations] #100002 'Drop column 'module_uuid' in the 'Components' table': success | time=189ms
2024.06.07 14:11:04 INFO web[][DbMigrations] #100003 'Drop column 'module_uuid_path' in the 'Components' table'...
2024.06.07 14:11:05 INFO web[][DbMigrations] #100003 'Drop column 'module_uuid_path' in the 'Components' table': success | time=16ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #100004 'Drop column 'b_module_uuid' in the 'Components' table'...
2024.06.07 14:11:05 INFO web[][DbMigrations] #100004 'Drop column 'b_module_uuid' in the 'Components' table': success | time=190ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #100005 'Drop column 'b_module_uuid_path' in the 'Components' table'...
2024.06.07 14:11:05 INFO web[][DbMigrations] #100005 'Drop column 'b_module_uuid_path' in the 'Components' table': success | time=92ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #100006 'Drop index 'projects_root_uuid' in the 'Components' table'...
2024.06.07 14:11:05 INFO web[][DbMigrations] #100006 'Drop index 'projects_root_uuid' in the 'Components' table': success | time=8ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #100007 'Drop column 'root_uuid' in the 'Components' table'...
2024.06.07 14:11:05 INFO web[][DbMigrations] #100007 'Drop column 'root_uuid' in the 'Components' table': success | time=90ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #100008 'Update value of 'user_local' in the 'users' table'...
2024.06.07 14:11:05 INFO web[][o.s.s.p.d.m.s.MassUpdate] 0 rows processed (0 items/sec)
2024.06.07 14:11:05 INFO web[][DbMigrations] #100008 'Update value of 'user_local' in the 'users' table': success | time=7ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #100009 'Make column 'user_local' not nullable in the 'users' table'...
2024.06.07 14:11:05 INFO web[][DbMigrations] #100009 'Make column 'user_local' not nullable in the 'users' table': success | time=91ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #100010 'Create 'scim_groups' table'...
2024.06.07 14:11:05 INFO web[][DbMigrations] #100010 'Create 'scim_groups' table': success | time=8ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #100011 'Create unique index on scim_groups.group_uuid'...
2024.06.07 14:11:05 INFO web[][DbMigrations] #100011 'Create unique index on scim_groups.group_uuid': success | time=5ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #100012 'Log a warning message if 'sonar.scim.enabled' is used'...
2024.06.07 14:11:05 INFO web[][DbMigrations] #100012 'Log a warning message if 'sonar.scim.enabled' is used': success | time=3ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #100013 'Drop 'sonar.scim.enabled' property'...
2024.06.07 14:11:05 INFO web[][DbMigrations] #100013 'Drop 'sonar.scim.enabled' property': success | time=5ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #100014 'Drop any SCIM User provisioning, turning all users local'...
2024.06.07 14:11:05 INFO web[][DbMigrations] #100014 'Drop any SCIM User provisioning, turning all users local': success | time=7ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #100015 'Add ncloc to 'Projects' table'...
2024.06.07 14:11:05 INFO web[][DbMigrations] #100015 'Add ncloc to 'Projects' table': success | time=6ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #100016 'Populate ncloc in 'Projects' table'...
2024.06.07 14:11:05 INFO web[][o.s.s.p.d.m.s.MassUpdate] 0 rows processed (0 items/sec)
2024.06.07 14:11:05 INFO web[][DbMigrations] #100016 'Populate ncloc in 'Projects' table': success | time=88ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #101000 'Add 'scm_accounts' table'...
2024.06.07 14:11:05 INFO web[][DbMigrations] #101000 'Add 'scm_accounts' table': success | time=4ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #101001 'Migrate scm accounts from 'users' to 'scm_accounts' table'...
2024.06.07 14:11:05 INFO web[][o.s.s.p.d.m.s.MassRowSplitter] 1 rows processed (0 items/sec)
2024.06.07 14:11:05 INFO web[][DbMigrations] #101001 'Migrate scm accounts from 'users' to 'scm_accounts' table': success | time=87ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #101002 'Add index on 'scm_accounts.scm_account''...
2024.06.07 14:11:05 INFO web[][DbMigrations] #101002 'Add index on 'scm_accounts.scm_account'': success | time=2ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #101003 'Add index on 'users.email''...
2024.06.07 14:11:05 INFO web[][DbMigrations] #101003 'Add index on 'users.email'': success | time=3ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #101004 'Drop 'scm_accounts' column in 'users' table'...
2024.06.07 14:11:05 INFO web[][DbMigrations] #101004 'Drop 'scm_accounts' column in 'users' table': success | time=86ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #101005 'Add column 'is_main' to 'project_branches' table'...
2024.06.07 14:11:05 INFO web[][DbMigrations] #101005 'Add column 'is_main' to 'project_branches' table': success | time=6ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #101006 'Update value of 'is_main' in 'project_branches' table'...
2024.06.07 14:11:05 INFO web[][o.s.s.p.d.m.s.MassUpdate] 0 rows processed (0 items/sec)
2024.06.07 14:11:05 INFO web[][DbMigrations] #101006 'Update value of 'is_main' in 'project_branches' table': success | time=5ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #101007 'Alter column 'is_main' in 'project_branches' table - make it not nullable'...
2024.06.07 14:11:05 INFO web[][DbMigrations] #101007 'Alter column 'is_main' in 'project_branches' table - make it not nullable': success | time=88ms
2024.06.07 14:11:05 INFO web[][DbMigrations] #101008 'Increase size of 'internal_properties.kee' from 20 to 40 characters'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #101008 'Increase size of 'internal_properties.kee' from 20 to 40 characters': success | time=7ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101009 'Create column 'project_uuid' in 'user_tokens'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #101009 'Create column 'project_uuid' in 'user_tokens': success | time=101ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101010 'Remove user tokens linked to unexistent project'...
2024.06.07 14:11:06 INFO web[][o.s.s.p.d.m.s.MassUpdate] 0 rows processed (0 items/sec)
2024.06.07 14:11:06 INFO web[][DbMigrations] #101010 'Remove user tokens linked to unexistent project': success | time=85ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101011 'Populate 'project_key' in 'user_tokens''...
2024.06.07 14:11:06 INFO web[][o.s.s.p.d.m.s.MassUpdate] 0 rows processed (0 items/sec)
2024.06.07 14:11:06 INFO web[][DbMigrations] #101011 'Populate 'project_key' in 'user_tokens'': success | time=6ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101012 'Drop column 'project_key' in 'user_tokens'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #101012 'Drop column 'project_key' in 'user_tokens': success | time=4ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101013 'Increase size of 'ce_queue.task_type' from 15 to 40 characters'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #101013 'Increase size of 'ce_queue.task_type' from 15 to 40 characters': success | time=1ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101014 'Increase size of 'ce_activity.task_type' from 15 to 40 characters'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #101014 'Increase size of 'ce_activity.task_type' from 15 to 40 characters': success | time=2ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101015 'Add 'external_groups' table.'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #101015 'Add 'external_groups' table.': success | time=80ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101016 'Add index on 'external_groups(external_identity_provider, external_id).'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #101016 'Add index on 'external_groups(external_identity_provider, external_id).': success | time=3ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101017 'Add 'code_variants' column in 'issues' table'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #101017 'Add 'code_variants' column in 'issues' table': success | time=93ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101018 'Fix different uuids for subportfolios'...
2024.06.07 14:11:06 INFO web[][o.s.s.p.d.m.s.MassUpdate] 0 rows processed (0 items/sec)
2024.06.07 14:11:06 INFO web[][DbMigrations] #101018 'Fix different uuids for subportfolios': success | time=23ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101019 'Add report_schedules table'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #101019 'Add report_schedules table': success | time=2ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101020 'Add report_subscriptions table'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #101020 'Add report_subscriptions table': success | time=2ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101021 'Add report_schedules unique index'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #101021 'Add report_schedules unique index': success | time=5ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101022 'Add report_subscriptions unique index'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #101022 'Add report_subscriptions unique index': success | time=65ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101023 'Rename column 'component_uuid' to 'entity_uuid' in the 'properties' table'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #101023 'Rename column 'component_uuid' to 'entity_uuid' in the 'properties' table': success | time=4ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101024 'Populate report_schedules table'...
2024.06.07 14:11:06 INFO web[][o.s.s.p.d.m.s.MassUpdate] 0 rows processed (0 items/sec)
2024.06.07 14:11:06 INFO web[][DbMigrations] #101024 'Populate report_schedules table': success | time=5ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101025 'Populate report_subscriptions table'...
2024.06.07 14:11:06 INFO web[][o.s.s.p.d.m.s.MassUpdate] 0 rows processed (0 items/sec)
2024.06.07 14:11:06 INFO web[][DbMigrations] #101025 'Populate report_subscriptions table': success | time=4ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #101026 'Remove report properties'...
2024.06.07 14:11:06 INFO web[][o.s.s.p.d.m.s.MassUpdate] 0 rows processed (0 items/sec)
2024.06.07 14:11:06 INFO web[][DbMigrations] #101026 'Remove report properties': success | time=85ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102000 'Rename 'component_uuid' in 'user_roles' table to 'entity_uuid''...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102000 'Rename 'component_uuid' in 'user_roles' table to 'entity_uuid'': success | time=4ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102001 'Rename 'component_uuid' in 'group_roles' table to 'entity_uuid''...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102001 'Rename 'component_uuid' in 'group_roles' table to 'entity_uuid'': success | time=3ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102002 'Drop index 'group_roles_component_uuid' in 'group_roles''...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102002 'Drop index 'group_roles_component_uuid' in 'group_roles'': success | time=2ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102003 'Create index 'entity_uuid_user_roles' in 'group_roles' table'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102003 'Create index 'entity_uuid_user_roles' in 'group_roles' table': success | time=3ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102004 'Drop index 'user_roles_component_uuid' in 'user_roles' table'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102004 'Drop index 'user_roles_component_uuid' in 'user_roles' table': success | time=3ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102005 'Create index 'user_roles_entity_uuid' in 'user_roles''...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102005 'Create index 'user_roles_entity_uuid' in 'user_roles'': success | time=81ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102006 'Drop index 'ce_activity_component' in 'ce_activity''...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102006 'Drop index 'ce_activity_component' in 'ce_activity'': success | time=3ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102007 'Rename 'main_component_uuid' in 'ce_activity' table to 'entity_uuid''...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102007 'Rename 'main_component_uuid' in 'ce_activity' table to 'entity_uuid'': success | time=4ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102008 'Create index 'ce_activity_entity_uuid' in 'ce_activity' table''...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102008 'Create index 'ce_activity_entity_uuid' in 'ce_activity' table'': success | time=2ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102009 'Drop index 'ce_queue_main_component' in 'ce_queue' table'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102009 'Drop index 'ce_queue_main_component' in 'ce_queue' table': success | time=81ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102010 'Rename 'main_component_uuid' in 'ce_queue' table to 'entity_uuid''...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102010 'Rename 'main_component_uuid' in 'ce_queue' table to 'entity_uuid'': success | time=5ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102011 'Create index 'ce_queue_entity_uuid' in 'ce_queue' table'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102011 'Create index 'ce_queue_entity_uuid' in 'ce_queue' table': success | time=2ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102012 'Drop 'project_mappings' table'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102012 'Drop 'project_mappings' table': success | time=4ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102013 'Drop index on 'components.main_branch_project_uuid'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102013 'Drop index on 'components.main_branch_project_uuid': success | time=3ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102014 'Drop column 'main_branch_project_uuid' in the components table'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102014 'Drop column 'main_branch_project_uuid' in the components table': success | time=82ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102015 'Drop index 'component_uuid' in 'webhook_deliveries' table'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102015 'Drop index 'component_uuid' in 'webhook_deliveries' table': success | time=2ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102016 'Rename 'component_uuid' in 'webhook_deliveries' table to 'project_uuid''...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102016 'Rename 'component_uuid' in 'webhook_deliveries' table to 'project_uuid'': success | time=2ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102018 'Drop index 'component_uuid' in 'snapshots' table'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102018 'Drop index 'component_uuid' in 'snapshots' table': success | time=4ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102019 'Rename 'component_uuid' in 'snapshots' table to 'root_component_uuid''...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102019 'Rename 'component_uuid' in 'snapshots' table to 'root_component_uuid'': success | time=2ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102020 'Create index 'snapshots_root_component_uuid' in 'snapshots' table'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102020 'Create index 'snapshots_root_component_uuid' in 'snapshots' table': success | time=2ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102021 'Create 'purged' column in 'snapshots' table'...
2024.06.07 14:11:06 INFO web[][DbMigrations] #102021 'Create 'purged' column in 'snapshots' table': success | time=4ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102022 'Populate 'purged' column in 'snapshots' table'...
2024.06.07 14:11:06 INFO web[][o.s.s.p.d.m.s.MassUpdate] 0 rows processed (0 items/sec)
2024.06.07 14:11:06 INFO web[][DbMigrations] #102022 'Populate 'purged' column in 'snapshots' table': success | time=80ms
2024.06.07 14:11:06 INFO web[][DbMigrations] #102023 'Make 'purged' column not nullable in 'snapshots' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102023 'Make 'purged' column not nullable in 'snapshots' table': success | time=5ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102024 'Drop 'purge_status' column in 'snapshots' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102024 'Drop 'purge_status' column in 'snapshots' table': success | time=4ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102025 'Rename 'build_date' in 'snapshots' table to 'analysis_date'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102025 'Rename 'build_date' in 'snapshots' table to 'analysis_date': success | time=3ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102030 'Create table 'anticipated_transitions''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102030 'Create table 'anticipated_transitions'': success | time=3ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102031 'Increase size of 'ce_queue.is_last_key' from 55 to 80 characters'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102031 'Increase size of 'ce_queue.is_last_key' from 55 to 80 characters': success | time=1ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102032 'Increase size of 'ce_queue.main_is_last_key' from 55 to 80 characters'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102032 'Increase size of 'ce_queue.main_is_last_key' from 55 to 80 characters': success | time=1ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102033 'Add column 'clean_code_attribute' in 'rules' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102033 'Add column 'clean_code_attribute' in 'rules' table': success | time=5ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102034 'Populate 'clean_code_attribute' column in 'rules' table'...
2024.06.07 14:11:07 INFO web[][o.s.s.p.d.m.s.MassUpdate] 0 rows processed (0 items/sec)
2024.06.07 14:11:07 INFO web[][DbMigrations] #102034 'Populate 'clean_code_attribute' column in 'rules' table': success | time=7ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102036 'Create 'rules_default_impacts' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102036 'Create 'rules_default_impacts' table': success | time=3ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102037 'Create unique constraint index on 'rules_default_impacts' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102037 'Create unique constraint index on 'rules_default_impacts' table': success | time=79ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102038 'Create 'issues_impacts' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102038 'Create 'issues_impacts' table': success | time=6ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102039 'Create unique constraint index on 'issues_impacts' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102039 'Create unique constraint index on 'issues_impacts' table': success | time=6ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102040 'Populate default impacts for existing rules'...
2024.06.07 14:11:07 INFO web[][o.s.s.p.d.m.s.MassUpdate] 0 rows processed (0 items/sec)
2024.06.07 14:11:07 INFO web[][DbMigrations] #102040 'Populate default impacts for existing rules': success | time=4ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102041 'Fix sqale_index metric description in 'metrics' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102041 'Fix sqale_index metric description in 'metrics' table': success | time=2ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102042 'Create table 'github_orgs_groups''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102042 'Create table 'github_orgs_groups'': success | time=2ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102043 'Create 'previous_non_compliant_value' in 'new_code_periods' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102043 'Create 'previous_non_compliant_value' in 'new_code_periods' table': success | time=4ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102044 'Update column 'value' and populate column 'previous_non_compliant_value' in 'new_code_periods' table'...
2024.06.07 14:11:07 INFO web[][o.s.s.p.d.m.s.MassUpdate] 0 rows processed (0 items/sec)
2024.06.07 14:11:07 INFO web[][DbMigrations] #102044 'Update column 'value' and populate column 'previous_non_compliant_value' in 'new_code_periods' table': success | time=6ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102045 'Alter 'project_uuid' in 'user_dismissed_messages' - make it nullable'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102045 'Alter 'project_uuid' in 'user_dismissed_messages' - make it nullable': success | time=66ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102046 'Create index 'project_branches_project_uuid' in 'project_branches' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102046 'Create index 'project_branches_project_uuid' in 'project_branches' table': success | time=2ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102047 'Drop index 'idx_wbhk_dlvrs_wbhk_uuid' in 'webhook_deliveries''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102047 'Drop index 'idx_wbhk_dlvrs_wbhk_uuid' in 'webhook_deliveries'': success | time=2ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102048 'Create index 'wb_webhook_uuid_created_at' in 'webhook_deliveries''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102048 'Create index 'wb_webhook_uuid_created_at' in 'webhook_deliveries'': success | time=1ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102049 'Drop index 'wd_project_uuid' in 'webhook_deliveries''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102049 'Drop index 'wd_project_uuid' in 'webhook_deliveries'': success | time=1ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102050 'Create index 'wd_project_uuid_created_at' in 'webhook_deliveries''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102050 'Create index 'wd_project_uuid_created_at' in 'webhook_deliveries'': success | time=1ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102051 'Drop index 'ce_task_uuid' in 'webhook_deliveries''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102051 'Drop index 'ce_task_uuid' in 'webhook_deliveries'': success | time=88ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102052 'Create index 'wd_task_uuid_created_at' in 'webhook_deliveries''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102052 'Create index 'wd_task_uuid_created_at' in 'webhook_deliveries'': success | time=2ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102053 'Create index 'wd_created_at' in 'webhook_deliveries''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102053 'Create index 'wd_created_at' in 'webhook_deliveries'': success | time=2ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #102054 'Insert property github.userConsentementForPermissionProvisioningRequired'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #102054 'Insert property github.userConsentementForPermissionProvisioningRequired': success | time=2ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #103000 'Set 'sonar.qualityProfiles.allowDisableInheritedRules' to false for upgraded instances'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #103000 'Set 'sonar.qualityProfiles.allowDisableInheritedRules' to false for upgraded instances': success | time=2ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #103001 'Add table 'github_perms_mapping''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #103001 'Add table 'github_perms_mapping'': success | time=3ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #103002 'Create unique index on 'github_perms_mapping''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #103002 'Create unique index on 'github_perms_mapping'': success | time=4ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #103003 'Add default mappings to 'github_perms_mapping''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #103003 'Add default mappings to 'github_perms_mapping'': success | time=10ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #103004 'Add 'clean_code_attribute' column in 'issues' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #103004 'Add 'clean_code_attribute' column in 'issues' table': success | time=102ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #103005 'Add 'creation_method' column in 'projects' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #103005 'Add 'creation_method' column in 'projects' table': success | time=79ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #103006 'Populate 'creation_method' column in 'projects' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #103006 'Populate 'creation_method' column in 'projects' table': success | time=7ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #103007 'Make 'creation_method' column in 'projects' table non-nullable'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #103007 'Make 'creation_method' column in 'projects' table non-nullable': success | time=3ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #103008 'Add 'rule_changes_uuid' column in 'qprofile_changes''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #103008 'Add 'rule_changes_uuid' column in 'qprofile_changes'': success | time=5ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #103009 'Create table 'rule_changes''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #103009 'Create table 'rule_changes'': success | time=83ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #103010 'Create table 'rule_impact_changes''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #103010 'Create table 'rule_impact_changes'': success | time=2ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #103011 'Create index for 'rule_impact_changes''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #103011 'Create index for 'rule_impact_changes'': success | time=2ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #103012 'Add 'sq_version' column in 'qprofile_changes' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #103012 'Add 'sq_version' column in 'qprofile_changes' table': success | time=3ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #103013 'Deduplicate potential records in 'properties' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #103013 'Deduplicate potential records in 'properties' table': success | time=3ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #103014 'Create unique index to 'properties' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #103014 'Create unique index to 'properties' table': success | time=2ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #104000 'Delete redundant Failed Alerts for Applications'...
2024.06.07 14:11:07 INFO web[][o.s.s.p.d.m.s.MassUpdate] 0 rows processed (0 items/sec)
2024.06.07 14:11:07 INFO web[][DbMigrations] #104000 'Delete redundant Failed Alerts for Applications': success | time=87ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #104001 'Rename metric 'wont_fix_issues' to 'accepted_issues''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #104001 'Rename metric 'wont_fix_issues' to 'accepted_issues'': success | time=2ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #104002 'Create table 'rules_tags''...
2024.06.07 14:11:07 INFO web[][DbMigrations] #104002 'Create table 'rules_tags'': success | time=2ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #104003 'Populate 'rule_tags' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #104003 'Populate 'rule_tags' table': success | time=4ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #104004 'Drop column 'tags' in the 'rules' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #104004 'Drop column 'tags' in the 'rules' table': success | time=86ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #104005 'Drop column 'system_tags' in the 'rules' table'...
2024.06.07 14:11:07 INFO web[][DbMigrations] #104005 'Drop column 'system_tags' in the 'rules' table': success | time=5ms
2024.06.07 14:11:07 INFO web[][DbMigrations] #104006 'Add 'uuid' column to 'groups_users''...
2024.06.07 14:11:08 INFO web[][DbMigrations] #104006 'Add 'uuid' column to 'groups_users'': success | time=5ms
2024.06.07 14:11:08 INFO web[][DbMigrations] #104007 'Populate 'uuid' column in 'groups_users''...
2024.06.07 14:11:08 INFO web[][o.s.s.p.d.m.s.MassUpdate] 2 rows processed (0 items/sec)
2024.06.07 14:11:08 INFO web[][DbMigrations] #104007 'Populate 'uuid' column in 'groups_users'': success | time=96ms
2024.06.07 14:11:08 INFO web[][DbMigrations] #104008 'Make 'uuid' column in 'groups_users' table non-nullable'...
2024.06.07 14:11:08 INFO web[][DbMigrations] #104008 'Make 'uuid' column in 'groups_users' table non-nullable': success | time=6ms
2024.06.07 14:11:08 INFO web[][DbMigrations] #104009 'Create primary key on 'groups_users.uuid''...
2024.06.07 14:11:08 INFO web[][DbMigrations] #104009 'Create primary key on 'groups_users.uuid'': success | time=7ms
2024.06.07 14:11:08 INFO web[][DbMigrations] #104010 'Set nulls in 'clean_code_attribute' column of 'rules' table for security hotspots'...
2024.06.07 14:11:08 INFO web[][o.s.s.p.d.m.s.MassUpdate] 0 rows processed (0 items/sec)
2024.06.07 14:11:08 INFO web[][DbMigrations] #104010 'Set nulls in 'clean_code_attribute' column of 'rules' table for security hotspots': success | time=75ms
2024.06.07 14:11:08 INFO web[][DbMigrations] #104011 'Create 'issues_fixed' table'...
2024.06.07 14:11:08 INFO web[][DbMigrations] #104011 'Create 'issues_fixed' table': success | time=6ms
2024.06.07 14:11:08 INFO web[][DbMigrations] #105000 'Drop constraint on 'uuid' from 'issues_impacts' table'...
2024.06.07 14:11:08 INFO web[][DbMigrations] #105000 'Drop constraint on 'uuid' from 'issues_impacts' table': success | time=6ms
2024.06.07 14:11:08 INFO web[][DbMigrations] #105001 'Drop constraint on 'uuid' from 'rules_default_impacts' table'...
2024.06.07 14:11:08 INFO web[][DbMigrations] #105001 'Drop constraint on 'uuid' from 'rules_default_impacts' table': success | time=80ms
2024.06.07 14:11:08 INFO web[][DbMigrations] #105002 'Drop column 'uuid' from 'issues_impacts' table'...
2024.06.07 14:11:08 INFO web[][DbMigrations] #105002 'Drop column 'uuid' from 'issues_impacts' table': success | time=7ms
2024.06.07 14:11:08 INFO web[][DbMigrations] #105003 'Drop column 'uuid' from 'rules_default_impacts' table'...
2024.06.07 14:11:08 INFO web[][DbMigrations] #105003 'Drop column 'uuid' from 'rules_default_impacts' table': success | time=3ms
2024.06.07 14:11:08 INFO web[][DbMigrations] #105004 'Create primary key on 'issues_impacts' table'...
2024.06.07 14:11:08 INFO web[][DbMigrations] #105004 'Create primary key on 'issues_impacts' table': success | time=2ms
2024.06.07 14:11:08 INFO web[][DbMigrations] #105005 'Create primary key on 'rules_default_impacts' table'...
2024.06.07 14:11:08 INFO web[][DbMigrations] #105005 'Create primary key on 'rules_default_impacts' table': success | time=4ms
2024.06.07 14:11:08 INFO web[][DbMigrations] #105006 'Delete 'languageSpecificParameters' property set from 'properties' table'...
2024.06.07 14:11:08 INFO web[][DbMigrations] #105006 'Delete 'languageSpecificParameters' property set from 'properties' table': success | time=81ms
2024.06.07 14:11:08 INFO web[][DbMigrations] Executed DB migrations: success | time=5293ms
2024.06.07 14:11:08 INFO web[][o.s.s.p.Platform] Database has been automatically updated
2024.06.07 14:11:08 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceFilter@66234b0f [pattern=UrlPattern{inclusions=[/api/system/migrate_db.*, ...], exclusions=[/api/components/update_key, ...]}]
2024.06.07 14:11:08 INFO web[][o.s.s.p.DetectPluginChange] Detect plugin changes
2024.06.07 14:11:16 INFO web[][o.h.v.i.util.Version] HV000001: Hibernate Validator null
2024.06.07 14:11:17 INFO web[][o.s.s.e.IndexCreator] Create index [metadatas]
2024.06.07 14:11:22 INFO web[][o.s.s.e.IndexCreator] Create mapping metadatas
2024.06.07 14:11:24 INFO web[][o.s.s.e.IndexCreator] Create index [components]
2024.06.07 14:11:27 INFO web[][o.s.s.e.IndexCreator] Create mapping components
2024.06.07 14:11:27 INFO web[][o.s.s.e.IndexCreator] Create index [projectmeasures]
2024.06.07 14:11:29 INFO web[][o.s.s.e.IndexCreator] Create mapping projectmeasures
2024.06.07 14:11:29 INFO web[][o.s.s.e.IndexCreator] Create index [rules]
2024.06.07 14:11:31 INFO web[][o.s.s.e.IndexCreator] Create mapping rules
2024.06.07 14:11:31 INFO web[][o.s.s.e.IndexCreator] Create index [issues]
2024.06.07 14:11:33 INFO web[][o.s.s.e.IndexCreator] Create mapping issues
2024.06.07 14:11:33 INFO web[][o.s.s.e.IndexCreator] Create index [views]
2024.06.07 14:11:34 INFO web[][o.s.s.e.IndexCreator] Create mapping views
2024.06.07 14:11:35 INFO web[][o.s.s.s.LogServerId] Server ID: 147B411E-AY_zCfyqhRDcfGaC03OO
2024.06.07 14:11:35 WARN web[][o.s.s.a.LogOAuthWarning] For security reasons, OAuth authentication should use HTTPS. You should set the property 'Administration > Configuration > Server base URL' to an HTTPS URL.
2024.06.07 14:11:35 INFO web[][o.s.s.p.UpdateCenterClient] Update center: https://downloads.sonarsource.com/sonarqube/update/update-center.properties
2024.06.07 14:11:41 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action saml/validation_init
2024.06.07 14:11:42 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/system/liveness
2024.06.07 14:11:42 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/plugins/download
2024.06.07 14:11:42 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/analysis_cache/get
2024.06.07 14:11:42 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/alm_integrations/check_pat
2024.06.07 14:11:42 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/push/sonarlint_events
2024.06.07 14:11:42 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/dismiss_message/check
2024.06.07 14:11:42 INFO web[][o.s.s.a.p.ExpiredSessionsCleaner] Purge of expired session tokens has removed 0 elements
2024.06.07 14:11:42 INFO web[][o.s.s.a.p.ExpiredSessionsCleaner] Purge of expired SAML message ids has removed 0 elements
2024.06.07 14:11:42 INFO web[][o.s.s.n.NotificationDaemon] Notification service started (delay 60 sec.)
2024.06.07 14:11:42 INFO web[][o.s.s.t.TelemetryDaemon] Sharing of SonarQube statistics is enabled.
2024.06.07 14:11:44 INFO web[][o.s.s.s.RegisterMetrics] Register metrics
2024.06.07 14:11:45 INFO web[][o.s.s.q.RegisterQualityGates] Built-in quality gate's conditions of [Sonar way] has been updated
2024.06.07 14:11:45 INFO web[][o.s.s.r.r.RulesRegistrant] Register rules
May I know what was wrong with me? or Am I missed something?
Thanks