2024-09-16 19:40:18 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-09-24 23:16:58 +10:00
|
|
|
# 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=)
|