Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ profiler.aws.sdk.s3.enable=true
# Allow profiling status code value.
profiler.aws.sdk.s3.statuscode=true
# Mark error
profiler.aws.sdk.s3.mark.error=true
profiler.aws.sdk.s3.mark.error=false
# Cannot be used with the Apache HttpClient 4.x or JDK HttpURLConnection.
# Use the -Dprofiler.apache.httpclient4.enable=false or -Dprofiler.jdk.http=false setting.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ profiler.aws.sdk.s3.enable=true
# Allow profiling status code value.
profiler.aws.sdk.s3.statuscode=true
# Mark error
profiler.aws.sdk.s3.mark.error=true
profiler.aws.sdk.s3.mark.error=false
# Cannot be used with the Apache HttpClient 4.x or JDK HttpURLConnection.
# Use the -Dprofiler.apache.httpclient4.enable=false or -Dprofiler.jdk.http=false setting.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static boolean isStatusCode(ProfilerConfig config) {
}

public static boolean isMarkError(ProfilerConfig config) {
return config.readBoolean("profiler.aws.sdk.s3.mark.error", Boolean.TRUE);
return config.readBoolean("profiler.aws.sdk.s3.mark.error", Boolean.FALSE);
}

public AwsSdkS3PluginConfig(ProfilerConfig config) {
Expand Down