Skip to content

Instantly share code, notes, and snippets.

View foxeg's full-sized avatar
🦊

Fokin Evgenii foxeg

🦊
View GitHub Profile
@foxeg
foxeg / doc.rb
Last active December 17, 2019 17:20
def wait_for_cdn_url
return "" if Rails.env.test?
5.times do
@url = fetch_application_document.blackhole_file.url
break if URI.parse(@url).host != blackhole_host
sleep 1
end
@url
end