Increase network simulation delay in WeatherForecastService to 3000ms for showcasing scenarios.

This commit is contained in:
Nebojsa Vuksic 2025-08-07 15:06:16 +02:00
parent cf248aa19b
commit 4824b28177

View File

@ -53,7 +53,7 @@ class WeatherForecastService(
// Simulates a network request and stops the execution in case the coroutine
// that launched the getWeatherData task is canceled
delay(100)
delay(3000)
return WeatherForecastData(
location = location,