Skip to content
This repository was archived by the owner on Jul 19, 2025. It is now read-only.

Commit ea0d843

Browse files
committed
The Faraday middleware was returning a strongly typed URI object, which caused an exception farther up the stack.
1 parent ab39f58 commit ea0d843

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/cc/service/response_check.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def initialize(message, env)
77
@response_body = env[:body]
88
@status = env[:status]
99
@params = env[:params]
10-
@endpoint_url = env[:url]
10+
@endpoint_url = env[:url].to_s
1111

1212
super(message)
1313
end

0 commit comments

Comments
 (0)