Replies: 2 comments 3 replies
-
provide an example that reproduces the issue |
Beta Was this translation helpful? Give feedback.
1 reply
-
Hi team, do we have any update on this? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We have enabled https in our micronaut application.
Controller file is as below
application.yml file is as below
On hitting the API endpoint for the first time, as per controller logic, API response will contain Etag and Cache-control: max-age:60 headers
Expectation: On hitting the API endpoint for the second time, API request should contain "If-None-Match" header added by browser and as per the controller logic, response code should be 304.
Actual: The request does not contain "If-Non-Match" header.
NOTE: The headers work as expected if we remove the ssl configuration from application.yml and run the app with http.
Is there any explicit headers configuration we need to add for "HTTPS" ?
Beta Was this translation helpful? Give feedback.
All reactions