From 6d2b51e8711ee96212efbdb65c2747a11b16ebf6 Mon Sep 17 00:00:00 2001 From: Todd Willey Date: Wed, 22 Jun 2011 17:27:01 -0400 Subject: Swift-specific middleware. --- setup.py | 1 + 1 file changed, 1 insertion(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 6e366ac6..42e8ad1b 100644 --- a/setup.py +++ b/setup.py @@ -59,6 +59,7 @@ setup( 'paste.filter_factory': [ 'remoteauth=keystone.middleware.remoteauth:remoteauth_factory', 'tokenauth=keystone.auth_protocols.auth_token:filter_factory', + 'swiftauth=keystone.auth_protocols.swift_auth_token:filter_factory', ], }, ) -- cgit From 4d6e13e528b91e7dfe502e582cc68144a9a9518e Mon Sep 17 00:00:00 2001 From: Todd Willey Date: Wed, 22 Jun 2011 19:14:26 -0400 Subject: Make swift middleware live where it should. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 42e8ad1b..f936b418 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,7 @@ setup( 'paste.filter_factory': [ 'remoteauth=keystone.middleware.remoteauth:remoteauth_factory', 'tokenauth=keystone.auth_protocols.auth_token:filter_factory', - 'swiftauth=keystone.auth_protocols.swift_auth_token:filter_factory', + 'swiftauth=keystone.middleware.swift_auth:filter_factory', ], }, ) -- cgit