mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 14:05:02 +02:00
15 lines
284 B
Ruby
15 lines
284 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "helpers/endpoint_fallback"
|
|
|
|
class EndpointTimeout < EndpointFallback
|
|
SLEEP_TIMEOUT = 3
|
|
|
|
get "/api/v1/dependencies" do
|
|
sleep(SLEEP_TIMEOUT)
|
|
end
|
|
end
|
|
|
|
require_relative "helpers/artifice"
|
|
|
|
Artifice.activate_with(EndpointTimeout)
|