From 42abd7766098ebffb308bcf8dab8c5e1fd415fdb Mon Sep 17 00:00:00 2001 From: Andrew Melton Date: Thu, 27 Jun 2013 13:53:32 -0400 Subject: [PATCH] Allow kpi to take alphanumeric tenant id --- stacktach/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stacktach/urls.py b/stacktach/urls.py index 072cb4c..3670d30 100644 --- a/stacktach/urls.py +++ b/stacktach/urls.py @@ -20,7 +20,7 @@ urlpatterns = patterns('', url(r'stacky/watch/(?P\d+)/$', 'stacktach.stacky_server.do_watch'), url(r'stacky/kpi/$', 'stacktach.stacky_server.do_kpi'), - url(r'stacky/kpi/(?P\d+)/$', 'stacktach.stacky_server.do_kpi'), + url(r'stacky/kpi/(?P\w+)/$', 'stacktach.stacky_server.do_kpi'), url(r'stacky/usage/launches/$', 'stacktach.stacky_server.do_list_usage_launches'), url(r'stacky/usage/deletes/$',