http-service: change item price cache to 30 minutes

This commit is contained in:
Adam
2018-01-10 17:23:41 -05:00
parent 9021b9a600
commit c774784c4e

View File

@@ -251,7 +251,7 @@ public class ItemService
return ResponseEntity.ok()
.header(RUNELITE_CACHE, hit ? "HIT" : "MISS")
.cacheControl(CacheControl.maxAge(30, TimeUnit.SECONDS))
.cacheControl(CacheControl.maxAge(30, TimeUnit.MINUTES))
.body(itemPrice);
}