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: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ It contains auto-configurations which instruments and trace following Spring Boo
21
21
* Spring Messaging - trace messages being sent through [Messaging Channels](https://docs.spring.io/spring-integration/reference/html/messaging-channels-section.html)
22
22
* RabbitMQ
23
23
24
-
This library is compatible with [Spring Cloud](http://projects.spring.io/spring-cloud/)`Finchley` (version `0.2.x`) and `Dalston` and `Edgware`(version `0.1.x` in branch [release-0.1](https://github.com/opentracing-contrib/java-spring-cloud/tree/release-0.1))
24
+
This library is compatible with [Spring Cloud](http://projects.spring.io/spring-cloud/)`Finchley`and `Greenwhich`(version `0.2.x`) and `Dalston` and `Edgware`(version `0.1.x` in branch [release-0.1](https://github.com/opentracing-contrib/java-spring-cloud/tree/release-0.1))
25
25
26
26
## Comparison to `spring-cloud-sleuth`
27
27
This project is similar to [spring-cloud-sleuth](https://github.com/spring-cloud/spring-cloud-sleuth),
Copy file name to clipboardExpand all lines: instrument-starters/opentracing-spring-cloud-feign-starter/src/test/java/io/opentracing/contrib/spring/cloud/feign/FeignDefinedUrlTest.java
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/**
2
-
* Copyright 2017-2018 The OpenTracing Authors
2
+
* Copyright 2017-2019 The OpenTracing Authors
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5
5
* in compliance with the License. You may obtain a copy of the License at
@@ -32,6 +32,7 @@
32
32
33
33
/**
34
34
* @author Pavol Loffay
35
+
* @author Gilles Robert
35
36
*/
36
37
@SpringBootTest(
37
38
webEnvironment = WebEnvironment.DEFINED_PORT,
@@ -49,7 +50,7 @@ static class FeignWithoutRibbonConfiguration {
Copy file name to clipboardExpand all lines: instrument-starters/opentracing-spring-cloud-feign-starter/src/test/java/io/opentracing/contrib/spring/cloud/feign/FeignHystrixTest.java
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/**
2
-
* Copyright 2017-2018 The OpenTracing Authors
2
+
* Copyright 2017-2019 The OpenTracing Authors
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5
5
* in compliance with the License. You may obtain a copy of the License at
@@ -26,6 +26,7 @@
26
26
27
27
/**
28
28
* @author Pavol Loffay
29
+
* @author Gilles Robert
29
30
*/
30
31
@TestPropertySource(properties = {
31
32
"feign.hystrix.enabled=true",
@@ -39,7 +40,7 @@ public static void beforeClass() {
Copy file name to clipboardExpand all lines: instrument-starters/opentracing-spring-cloud-feign-starter/src/test/java/io/opentracing/contrib/spring/cloud/feign/FeignManualTest.java
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/**
2
-
* Copyright 2017-2018 The OpenTracing Authors
2
+
* Copyright 2017-2019 The OpenTracing Authors
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5
5
* in compliance with the License. You may obtain a copy of the License at
@@ -34,6 +34,7 @@
34
34
35
35
/**
36
36
* @author Pavol Loffay
37
+
* @author Gilles Robert
37
38
*/
38
39
@SpringBootTest(
39
40
webEnvironment = WebEnvironment.RANDOM_PORT,
@@ -53,7 +54,7 @@ public ManualFeignConfiguration(Client client) {
53
54
}
54
55
}
55
56
56
-
@FeignClient(value = "localService")
57
+
@FeignClient(value = "manualLocalService")
57
58
interfaceFeignInterface {
58
59
59
60
@RequestLine("GET /notTraced")
@@ -72,4 +73,4 @@ public void testTracedRequestDefinedUrl() throws InterruptedException {
Copy file name to clipboardExpand all lines: instrument-starters/opentracing-spring-cloud-feign-starter/src/test/java/io/opentracing/contrib/spring/cloud/feign/FeignManualWithSpanDecoratorsTest.java
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/**
2
-
* Copyright 2017-2018 The OpenTracing Authors
2
+
* Copyright 2017-2019 The OpenTracing Authors
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5
5
* in compliance with the License. You may obtain a copy of the License at
Copy file name to clipboardExpand all lines: instrument-starters/opentracing-spring-cloud-feign-starter/src/test/java/io/opentracing/contrib/spring/cloud/feign/FeignTest.java
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/**
2
-
* Copyright 2017-2018 The OpenTracing Authors
2
+
* Copyright 2017-2019 The OpenTracing Authors
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5
5
* in compliance with the License. You may obtain a copy of the License at
Copy file name to clipboardExpand all lines: instrument-starters/opentracing-spring-cloud-feign-starter/src/test/java/io/opentracing/contrib/spring/cloud/feign/FeignTracingAutoConfigurationTest.java
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/**
2
-
* Copyright 2017-2018 The OpenTracing Authors
2
+
* Copyright 2017-2019 The OpenTracing Authors
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5
5
* in compliance with the License. You may obtain a copy of the License at
Copy file name to clipboardExpand all lines: instrument-starters/opentracing-spring-cloud-feign-starter/src/test/java/io/opentracing/contrib/spring/cloud/feign/FeignWithSpanDecoratorsTest.java
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/**
2
-
* Copyright 2017-2018 The OpenTracing Authors
2
+
* Copyright 2017-2019 The OpenTracing Authors
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5
5
* in compliance with the License. You may obtain a copy of the License at
Copy file name to clipboardExpand all lines: instrument-starters/opentracing-spring-cloud-jms-starter/src/test/java/io/opentracing/contrib/spring/cloud/jms/JmsTracingAutoConfigurationTest.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/**
2
-
* Copyright 2017-2018 The OpenTracing Authors
2
+
* Copyright 2017-2019 The OpenTracing Authors
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5
5
* in compliance with the License. You may obtain a copy of the License at
0 commit comments