Skip to content
Snippets Groups Projects

fix: Fix error produced by CSRF filter blocking operation

Merged Zachary Sabourin requested to merge csrf-filter-blocking-error-fix into main
1 unresolved thread
Files
13
@@ -179,7 +179,7 @@ public class QuarkusCachingService implements CachingService {
@@ -179,7 +179,7 @@ public class QuarkusCachingService implements CachingService {
T data = callable.call();
T data = callable.call();
cacheWrap.setData(Optional.ofNullable(data));
cacheWrap.setData(Optional.ofNullable(data));
} catch (Exception e) {
} catch (Exception e) {
LOGGER.error("Eror while creating cache entry for key '{}': \n", cacheKey, e);
LOGGER.error("Error while creating cache entry for key '{}': \n", cacheKey, e);
cacheWrap.setErrorType(Optional.of(e.getClass()));
cacheWrap.setErrorType(Optional.of(e.getClass()));
}
}
getExpiration(false, cacheKey);
getExpiration(false, cacheKey);
Loading