Skip to content

Commit fdb7640

Browse files
Add / prefix to URL in mysql_config_options and postgresql_config_options API calls
1 parent 14ab831 commit fdb7640

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

linode_api4/groups/database.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def mysql_config_options(self):
7777
7878
:returns: The JSON configuration options for MySQL Databases.
7979
"""
80-
return self.client.get("databases/mysql/config", model=self)
80+
return self.client.get("/databases/mysql/config", model=self)
8181

8282
def postgresql_config_options(self):
8383
"""
@@ -87,7 +87,7 @@ def postgresql_config_options(self):
8787
8888
:returns: The JSON configuration options for PostgreSQL Databases.
8989
"""
90-
return self.client.get("databases/postgresql/config", model=self)
90+
return self.client.get("/databases/postgresql/config", model=self)
9191

9292
def instances(self, *filters):
9393
"""

0 commit comments

Comments
 (0)