We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 886f7d1 commit 464b902Copy full SHA for 464b902
core/aws-core/src/main/java/software/amazon/awssdk/awscore/interceptor/TraceIdExecutionInterceptor.java
@@ -39,7 +39,7 @@ public class TraceIdExecutionInterceptor implements ExecutionInterceptor {
39
40
@Override
41
public void beforeExecution(Context.BeforeExecution context, ExecutionAttributes executionAttributes) {
42
- if(lambdaFunctionNameEnvironmentVariable().isPresent()) {
+ if (lambdaFunctionNameEnvironmentVariable().isPresent()) {
43
String traceId = SdkInternalThreadLocal.get(CONCURRENT_TRACE_ID_KEY);
44
if (traceId != null) {
45
executionAttributes.putAttribute(TRACE_ID, traceId);
0 commit comments