diff --git a/app.rb b/app.rb index 2588b2b..15f8b31 100644 --- a/app.rb +++ b/app.rb @@ -56,7 +56,8 @@ def find_apple_system_status(country, title) def fetch_apple_system_status(country) fetch_cache(country) do - AppleSystemStatus::Crawler.perform(country: country) + chrome_options_args = AppleSystemStatus::Crawler::DEFAULT_CHROME_OPTIONS_ARGS + %w[disable-dev-shm-usage] + AppleSystemStatus::Crawler.perform(country: country, chrome_options_args: chrome_options_args) end end