Skip to content

Commit 6b1e34e

Browse files
committed
Fix Linode instances URL
1 parent 607db79 commit 6b1e34e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vpsproxy/providers/LinodeProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ private String getInstanceStatus(int linodeId) throws Exception {
284284
}
285285

286286
private List<InstanceInfo> getInstanceIdsWithTag(String tag) throws Exception {
287-
URL url = new URL(LINODE_API_BASE_URL + "/linode/instances" + tag);
287+
URL url = new URL(LINODE_API_BASE_URL + "/linode/instances");
288288
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
289289
connection.setRequestMethod("GET");
290290
connection.setRequestProperty("Authorization", "Bearer " + linodeApiKey);

0 commit comments

Comments
 (0)