Skip to content

Commit 57f5480

Browse files
committed
Fix proxy attribute name mismatch in RetryOperationsInterceptor
Signed-off-by: junhyeongkim2 <ggprgrkjh@naver.com>
1 parent 544b24e commit 57f5480

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/springframework/retry/interceptor/RetryOperationsInterceptor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ public Object doWithRetry(RetryContext context) throws Exception {
137137
finally {
138138
RetryContext context = RetrySynchronizationManager.getContext();
139139
if (context != null) {
140-
context.removeAttribute("__proxy__");
140+
context.removeAttribute("___proxy___");
141141
}
142142
}
143143
}

0 commit comments

Comments
 (0)