diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2021-08-18 11:08:54 -0500 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-08-19 20:08:16 +0000 |
commit | e6ee756424fd84eeb58af3407e604cd9d9b289ce (patch) | |
tree | 7f93b47d5892440e741adcbc5016c4d61cf35645 /server/sonar-webserver-api | |
parent | 11a4c829eb81f895f3b19b892e002071b8608316 (diff) | |
download | sonarqube-e6ee756424fd84eeb58af3407e604cd9d9b289ce.tar.gz sonarqube-e6ee756424fd84eeb58af3407e604cd9d9b289ce.zip |
SONAR-15142 Audit internal properties
Diffstat (limited to 'server/sonar-webserver-api')
2 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-webserver-api/src/main/java/org/sonar/server/plugins/PluginConsentVerifier.java b/server/sonar-webserver-api/src/main/java/org/sonar/server/plugins/PluginConsentVerifier.java index 582c4e35a82..494cec61a4d 100644 --- a/server/sonar-webserver-api/src/main/java/org/sonar/server/plugins/PluginConsentVerifier.java +++ b/server/sonar-webserver-api/src/main/java/org/sonar/server/plugins/PluginConsentVerifier.java @@ -54,7 +54,7 @@ public class PluginConsentVerifier implements Startable { if (hasExternalPlugins && NOT_ACCEPTED == PluginRiskConsent.valueOf(property.getValue())) { addWarningInSonarDotLog(); property.setValue(REQUIRED.name()); - dbClient.propertiesDao().saveProperty(session, property, null, null, null, null); + dbClient.propertiesDao().saveProperty(session, property); session.commit(); } else if (!hasExternalPlugins && REQUIRED == PluginRiskConsent.valueOf(property.getValue())) { dbClient.propertiesDao().deleteGlobalProperty(PLUGINS_RISK_CONSENT, session); diff --git a/server/sonar-webserver-api/src/main/java/org/sonar/server/project/ProjectDefaultVisibility.java b/server/sonar-webserver-api/src/main/java/org/sonar/server/project/ProjectDefaultVisibility.java index 0bcb0010a03..4b452708e60 100644 --- a/server/sonar-webserver-api/src/main/java/org/sonar/server/project/ProjectDefaultVisibility.java +++ b/server/sonar-webserver-api/src/main/java/org/sonar/server/project/ProjectDefaultVisibility.java @@ -46,6 +46,6 @@ public class ProjectDefaultVisibility { public void set(DbSession dbSession, Visibility visibility) { dbClient.propertiesDao().saveProperty(dbSession, new PropertyDto() .setKey(PROJECTS_DEFAULT_VISIBILITY_PROPERTY_NAME) - .setValue(visibility.getLabel()), null, null, null, null); + .setValue(visibility.getLabel())); } } |