mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 18:48:06 +01:00
4 lines
200 B
Ruby
4 lines
200 B
Ruby
# frozen_string_literal: true
|
|
|
|
# 2s is a fairly high default, but that should account for slow servers under load
|
|
Regexp.timeout = ENV.fetch('REGEXP_TIMEOUT', 2).to_f if Regexp.respond_to?(:timeout=)
|