From 6012a04e8fdb9644054dd98dc26dc57dbd658407 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Rozlach?= Date: Thu, 11 Aug 2016 22:37:07 +0200 Subject: [PATCH] auth: fix exhibitor URI (#707) --- cli/dcoscli/auth/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/dcoscli/auth/main.py b/cli/dcoscli/auth/main.py index 95c324a..8eba439 100644 --- a/cli/dcoscli/auth/main.py +++ b/cli/dcoscli/auth/main.py @@ -83,7 +83,7 @@ def _login(): # hit protected endpoint which will prompt for auth if cluster has auth try: - url = urllib.parse.urljoin(dcos_url, 'exhibitor') + url = urllib.parse.urljoin(dcos_url, 'exhibitor/') http.get(url) # if the user is authenticated, they have effectively "logged in" even if # they are not authorized for this endpoint