Merged in fix/cache-time-test-env (pull request #1544)

fix: lower cache time in test env

* fix: lower cache time in test env


Approved-by: Erik Tiekstra
This commit is contained in:
Linus Flood
2025-03-17 07:02:15 +00:00
parent f17406d34f
commit f0b245bdfe

View File

@@ -196,7 +196,7 @@ export const getHotel = cache(
async () => {
return callable(input.hotelId, input.language, input.isCardOnlyPayment)
},
"1d"
env.CACHE_TIME_HOTELS
)
}
)
@@ -326,7 +326,7 @@ export const getHotelsAvailabilityByCity = async (
),
}
},
"1h"
env.CACHE_TIME_CITY_SEARCH
)
}