We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b0c121 commit 4ccf1eaCopy full SHA for 4ccf1ea
1 file changed
libcloud/dns/drivers/rcodezero.py
@@ -110,7 +110,7 @@ def __init__(
110
secure=True,
111
host=None,
112
port=None,
113
- api_version="v1",
+ api_version="v2",
114
**kwargs,
115
):
116
"""
@@ -139,6 +139,8 @@ def __init__(
139
140
if api_version == "v1":
141
self.api_root = "/api/v1"
142
+ elif api_version == "v2":
143
+ self.api_root = "/api/v2"
144
else:
145
raise NotImplementedError("Unsupported API version: %s" % api_version)
146
0 commit comments