summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--openstack_auth/utils.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/openstack_auth/utils.py b/openstack_auth/utils.py
index b9e726a..ede8abb 100644
--- a/openstack_auth/utils.py
+++ b/openstack_auth/utils.py
@@ -118,6 +118,13 @@ def is_safe_url(url, host=None):
return not netloc or netloc == host
+# DEPRECATED -- Mitaka
+# This method definition is included to prevent breaking backward compatibility
+# The original functionality was problematic and has been removed.
+def remove_project_cache(token):
+ pass
+
+
# Helper for figuring out keystone version
# Implementation will change when API version discovery is available
def get_keystone_version():