1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-11 00:08:30 +01:00

fix: frontend api should use cache-control strategy 'no-cache' (#5641)

This commit is contained in:
Ivar Conradi Østhus 2023-12-14 10:35:21 +01:00 committed by GitHub
parent 29bd636273
commit e6442d9304
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -190,7 +190,7 @@ export default class ProxyController extends Controller {
ProxyController.createContext(req),
);
res.set('Cache-control', 'public, max-age=2');
res.set('Cache-control', 'no-cache');
this.services.openApiService.respondWithValidation(
200,