Skip to content

Commit

Permalink
Code Quality Violation
Browse files Browse the repository at this point in the history
Co-authored-by: datadog-datadog-prod-us1[bot] <88084959+datadog-datadog-prod-us1[bot]@users.noreply.github.com>
  • Loading branch information
jandro996 and datadog-datadog-prod-us1[bot] authored Jan 24, 2025
1 parent 33ce3ad commit 4cd1b95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal-api/src/main/java/datadog/trace/api/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -3858,7 +3858,7 @@ private Map<String, String> getAzureAppServicesTags() {
// Example: 8c500027-5f00-400e-8f00-60000000000f+apm-dotnet-EastUSwebspace
// Format: {subscriptionId}+{planResourceGroup}-{hostedInRegion}
String websiteOwner = getEnv("WEBSITE_OWNER_NAME");
int plusIndex = websiteOwner == null ? -1 : websiteOwner.indexOf("+");
int plusIndex = websiteOwner == null ? -1 : websiteOwner.indexOf('+');

// The subscription ID of the site instance in Azure App Services
String subscriptionId = null;
Expand Down

0 comments on commit 4cd1b95

Please sign in to comment.