You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hystrix-contrib/hystrix-javanica/src/main/java/com/netflix/hystrix/contrib/javanica/aop/aspectj/HystrixCacheAspect.java
Copy file name to clipboardExpand all lines: hystrix-contrib/hystrix-javanica/src/main/java/com/netflix/hystrix/contrib/javanica/aop/aspectj/HystrixCommandAspect.java
+63-13
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
/**
2
2
* Copyright 2012 Netflix, Inc.
3
-
*
3
+
* <p/>
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
6
6
* You may obtain a copy of the License at
7
-
*
7
+
* <p/>
8
8
* http://www.apache.org/licenses/LICENSE-2.0
9
-
*
9
+
* <p/>
10
10
* Unless required by applicable law or agreed to in writing, software
11
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Copy file name to clipboardExpand all lines: hystrix-contrib/hystrix-javanica/src/main/java/com/netflix/hystrix/contrib/javanica/aop/aspectj/WeavingMode.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/**
2
-
* Copyright 2012 Netflix, Inc.
2
+
* Copyright 2015 Netflix, Inc.
3
3
* <p/>
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
Copy file name to clipboardExpand all lines: hystrix-contrib/hystrix-javanica/src/main/java/com/netflix/hystrix/contrib/javanica/command/AbstractHystrixCommandFactory.java
Copy file name to clipboardExpand all lines: hystrix-contrib/hystrix-javanica/src/main/java/com/netflix/hystrix/contrib/javanica/command/LazyCommandExecutionAction.java
Copy file name to clipboardExpand all lines: hystrix-contrib/hystrix-javanica/src/main/java/com/netflix/hystrix/contrib/javanica/command/MetaHolder.java
Copy file name to clipboardExpand all lines: hystrix-contrib/hystrix-javanica/src/main/java/com/netflix/hystrix/contrib/javanica/command/MethodExecutionAction.java
@@ -108,7 +105,7 @@ private Object execute(Object o, Method m, Object... args) throws CommandActionE
108
105
Objectresult = null;
109
106
try {
110
107
m.setAccessible(true); // suppress Java language access
111
-
if (WeavingMode.COMPILE == metaHolder.getWeavingMode() && metaHolder.getAjcMethod() != null) {// metaHolder.getAjcMethod() != null todo this is hack, refactor
108
+
if (isCompileWeaving() && metaHolder.getAjcMethod() != null) {
112
109
result = invokeAjcMethod(metaHolder.getAjcMethod(), o, metaHolder, args);
Copy file name to clipboardExpand all lines: hystrix-contrib/hystrix-javanica/src/main/java/com/netflix/hystrix/contrib/javanica/command/closure/AbstractClosureFactory.java
0 commit comments