Replies: 1 comment 3 replies
-
If you know the issue, why didn't you report the issue?
Please stop kidding in my repo please! |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi @raman-m ,
We are facing some issue regarding cache option, however in earlier version till v22.0.1 FileCacheOptions was working fine but after the release of v23.2.2 we are facing issue mentioned below in two cases.
Case 1: V.22.0.1
"FileCacheOptions": { "TtlSeconds": 15, "Region": "europe-central" }
It was working fine with the multiple requests. before the latest update
case2:
After the addition of new parameter named Header in FileCacheOptions there, we are facing issue on multiple requests in case one request is already generated and in the same configured cache expiry time if another request come with different values, then we are getting same response as per the first request.
Case 2: v23.2.2
"FileCacheOptions": {
"TtlSeconds": 15,
"Region": "europe-central",
"Header": "Authorization"
}
Can you please guide what are the difference between above mentioned two releases, earlier cache option is working fine with multiple request input with different arguments. **
Do we need header for caching to work with release 23.2.2? or it can work if we do not use header as it doesn't seem to work without configuring header.
Beta Was this translation helpful? Give feedback.
All reactions