unset horizon TIME_ZONE to use system value instead

The horizon configuration file has a value set for
TIME_ZONE (set to UTC). This value is not available for users to
modify and takes precedence over the system settings.
The result is that the horizon GUI will show times in UTC
regardless of the system settings

This commit simple unsets the value so that the GUI
uses the system values by default.

Closes-Bug: #1806051

Change-Id: If24daaa97109d1020ec7f4ebdafebb5cda395ccb
Signed-off-by: Paul-Emile Element <Paul-Emile.Element@windriver.com>
This commit is contained in:
Paul-Emile Element 2018-11-30 09:36:06 -05:00
parent b6416ec0c7
commit 76a033521e
1 changed files with 8 additions and 0 deletions

View File

@ -1200,3 +1200,11 @@ SESSION_TIMEOUT = 3000
# token expiry to log users out. If the token expires in 60 minutes, a
# value of 600 will log users out after 50 minutes.
TOKEN_TIMEOUT_MARGIN = 600
# The timezone of the server. This should correspond with the timezone
# of your entire OpenStack installation, and hopefully be in UTC.
# In this case, we set the value to None so that the interface uses the system
# timezone by default
# This is an intentional overwrite of the original default value defined
# above in this file.
TIME_ZONE = None