Skip to content

Commit a8922a5

Browse files
committed
fix: use Ruby 3.0 syntax in client_config
1 parent 130f786 commit a8922a5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/client_config.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class ClientConfig
1717
def_delegators :@http_client_config, :connect_timeout, :connection_request_timeout, :retry_interval, :max_retries
1818

1919
def self.create(endpoint: nil, environment: nil, application: nil, api_key: nil)
20-
new(endpoint:, environment:, application:, api_key:)
20+
new(endpoint: endpoint, environment: environment, application: application, api_key: api_key)
2121
end
2222

2323
def self.create_from_properties(properties, prefix)

0 commit comments

Comments
 (0)