Skip to content

Commit 546db27

Browse files
authored
[FKJ-900] Set new correlationId header (#5)
[FKJ-900](https://obos-bbl.atlassian.net/browse/FKJ-900)
2 parents a6a43a2 + 5cd5134 commit 546db27

File tree

18 files changed

+20
-16
lines changed

18 files changed

+20
-16
lines changed

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>no.obos.util</groupId>
55
<artifactId>servicebuilder</artifactId>
6-
<version>10.1.14</version>
6+
<version>10.1.15</version>
77
<packaging>pom</packaging>
88

99
<parent>
10+
<!-- https://github.com/code-obos/obos-common-pom -->
1011
<groupId>no.obos.common</groupId>
1112
<artifactId>obos-common-pom</artifactId>
12-
<version>10.1.14</version>
13+
<version>10.1.15</version>
1314
</parent>
1415

1516
<prerequisites>

servicebuilder-activemq/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>no.obos.util</groupId>
77
<artifactId>servicebuilder</artifactId>
8-
<version>10.1.14</version>
8+
<version>10.1.15</version>
99
</parent>
1010

1111
<dependencies>

servicebuilder-addons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>no.obos.util</groupId>
77
<artifactId>servicebuilder</artifactId>
8-
<version>10.1.14</version>
8+
<version>10.1.15</version>
99
</parent>
1010

1111
<dependencies>

servicebuilder-core-addons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>no.obos.util</groupId>
77
<artifactId>servicebuilder</artifactId>
8-
<version>10.1.14</version>
8+
<version>10.1.15</version>
99
</parent>
1010

1111
<dependencies>

servicebuilder-core-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>no.obos.util</groupId>
77
<artifactId>servicebuilder</artifactId>
8-
<version>10.1.14</version>
8+
<version>10.1.15</version>
99
</parent>
1010

1111
<dependencies>

servicebuilder-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>no.obos.util</groupId>
77
<artifactId>servicebuilder</artifactId>
8-
<version>10.1.14</version>
8+
<version>10.1.15</version>
99
</parent>
1010

1111
<dependencies>

servicebuilder-core/src/main/java/no/obos/util/servicebuilder/client/RequestIdClientFilter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public void filter(ClientRequestContext requestContext) throws IOException {
1616
String requestId = MDC.get(Constants.X_OBOS_REQUEST_ID);
1717
if (requestId != null) {
1818
requestContext.getHeaders().putSingle(Constants.X_OBOS_REQUEST_ID, requestId);
19+
requestContext.getHeaders().putSingle(Constants.CORRELATION_ID, requestId);
1920
}
2021
}
2122
}

servicebuilder-db-basicdatasource/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>no.obos.util</groupId>
77
<artifactId>servicebuilder</artifactId>
8-
<version>10.1.14</version>
8+
<version>10.1.15</version>
99
</parent>
1010

1111
<dependencies>

servicebuilder-db-h2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>no.obos.util</groupId>
77
<artifactId>servicebuilder</artifactId>
8-
<version>10.1.14</version>
8+
<version>10.1.15</version>
99
</parent>
1010

1111
<dependencies>

servicebuilder-db-jdbi/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>no.obos.util</groupId>
77
<artifactId>servicebuilder</artifactId>
8-
<version>10.1.14</version>
8+
<version>10.1.15</version>
99
</parent>
1010

1111
<dependencies>

0 commit comments

Comments
 (0)