Skip to content

Commit 4e4b1b8

Browse files
committed
fix: Regional API domain processing
1 parent dd656f4 commit 4e4b1b8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/twilio-ruby/base/client_base.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ module REST
33
class ClientBase
44
# rubocop:disable Style/ClassVars
55
@@default_region = 'us1'
6-
# rubocop:disable Style/ClassVars
76
@@region_mappings = {
87
'au1' => 'sydney',
98
'br1' => 'sao-paulo',
@@ -15,7 +14,7 @@ class ClientBase
1514
'us1' => 'ashburn',
1615
'us2' => 'umatilla'
1716
}
18-
attr_accessor :http_client, :username, :password, :account_sid, :auth_token, :region , :logger,
17+
attr_accessor :http_client, :username, :password, :account_sid, :auth_token, :region, :logger,
1918
:user_agent_extensions, :credentials
2019

2120
# rubocop:disable Metrics/ParameterLists

0 commit comments

Comments
 (0)