Skip to content
Snippets Groups Projects
Commit 5af6c625 authored by Larissa Pereira's avatar Larissa Pereira
Browse files

adding correlation ID to the response header

parent d8fd8308
No related branches found
No related tags found
1 merge request!43adding correlation ID to the response header
Pipeline #34183 failed
......@@ -14,6 +14,12 @@ See also the test's [README.md](testing/README.md)
1. The project builds with [maven](https://maven.apache.org/). Make sure maven is installed locally.
1. The project requires the [Lombok](https://projectlombok.org/) plug-in installed for your IDE.
### Make the below change for a successful local build. Do not commit this change.
- **Comment the following in "crs-converter-core/pom.xml"**
```xml
<!-- <localRepositoryPath>${basedir}/../../.m2/repository</localRepositoryPath>-->
```
## Running CRS Conversion Service locally
#### Build and run CRS Conversion Service locally using bash
- Set the required environments described in [Release/deployment](##Release/deployment) section
......
......@@ -58,6 +58,7 @@ public class AuthenticationRequestFilter extends OncePerRequestFilter {
String message = String.format("User authenticated | User: %s", groups.getMemberEmail());
logger.info(message);
putAuthenticationIntoContext(groups);
httpServletResponse.addHeader(DpsHeaders.CORRELATION_ID, dpsHeaders.getCorrelationId());
filterChain.doFilter(httpServletRequest, httpServletResponse);
} catch (EntitlementsException e) {
String message = String.format(String.format("User not authenticated. Response: %s", e.getHttpResponse()), e);
......
......@@ -76,6 +76,7 @@ public class AuthenticationRequestFilter extends OncePerRequestFilter {
String message = String.format("User authenticated | User: %s", groups.getMemberEmail());
logger.info(message);
putAuthenticationIntoContext(groups);
httpServletResponse.addHeader(DpsHeaders.CORRELATION_ID, dpsHeaders.getCorrelationId());
filterChain.doFilter(httpServletRequest, httpServletResponse);
} catch (EntitlementsException e) {
String message = String.format(String.format("User not authenticated. Response: %s", e.getHttpResponse()), e);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment