We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 607db79 commit 6b1e34eCopy full SHA for 6b1e34e
src/vpsproxy/providers/LinodeProvider.java
@@ -284,7 +284,7 @@ private String getInstanceStatus(int linodeId) throws Exception {
284
}
285
286
private List<InstanceInfo> getInstanceIdsWithTag(String tag) throws Exception {
287
- URL url = new URL(LINODE_API_BASE_URL + "/linode/instances" + tag);
+ URL url = new URL(LINODE_API_BASE_URL + "/linode/instances");
288
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
289
connection.setRequestMethod("GET");
290
connection.setRequestProperty("Authorization", "Bearer " + linodeApiKey);
0 commit comments