mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
Environment variables are strings, so convert to a float first.
This commit is contained in:
@@ -72,7 +72,7 @@ class RackspaceProvider(BaseProvider):
|
||||
auth_token, dns_endpoint = self._get_auth_token(username, api_key)
|
||||
self.dns_endpoint = dns_endpoint
|
||||
|
||||
self.ratelimit_delay = ratelimit_delay
|
||||
self.ratelimit_delay = float(ratelimit_delay)
|
||||
|
||||
sess = Session()
|
||||
sess.headers.update({'X-Auth-Token': auth_token})
|
||||
|
||||
Reference in New Issue
Block a user