Make TIME_ZONE a local settings with a sane default.

Change-Id: Ib441d3ca0e2f0d70eb6fd372e42c363be1090511
This commit is contained in:
Gabriel Hurley
2012-06-25 13:32:46 -07:00
parent b1b14934ef
commit ac6bc36a5b
2 changed files with 4 additions and 1 deletions

View File

@@ -71,6 +71,10 @@ OPENSTACK_KEYSTONE_BACKEND = {
# providing a paging element (a "more" link) to paginate results.
API_RESULT_LIMIT = 1000
# The timezone of the server. This should correspond with the timezone
# of your entire OpenStack installation, and hopefully be in UTC.
TIME_ZONE = "UTC"
LOGGING = {
'version': 1,
# When set to True this will disable all logging except

View File

@@ -126,7 +126,6 @@ SESSION_COOKIE_HTTPONLY = True
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
SESSION_COOKIE_SECURE = False
TIME_ZONE = None
gettext_noop = lambda s: s
LANGUAGES = (
('en', gettext_noop('English')),