mirror of
https://github.com/django/django.git
synced 2024-12-28 12:06:22 +00:00
[1.8.x] Cleaned up init_connection_state in the psycopg2 backend.
settings_dict['TIME_ZONE'] is set in ConnectionHandler.ensure_defaults.
Backport of 28e97a9bdc
from master
This commit is contained in:
parent
2b79a35a83
commit
30e5356c2e
@ -186,10 +186,9 @@ class DatabaseWrapper(BaseDatabaseWrapper):
|
||||
return connection
|
||||
|
||||
def init_connection_state(self):
|
||||
settings_dict = self.settings_dict
|
||||
self.connection.set_client_encoding('UTF8')
|
||||
tz = 'UTC' if settings.USE_TZ else settings_dict.get('TIME_ZONE')
|
||||
if tz:
|
||||
|
||||
tz = self.settings_dict['TIME_ZONE']
|
||||
try:
|
||||
get_parameter_status = self.connection.get_parameter_status
|
||||
except AttributeError:
|
||||
|
Loading…
Reference in New Issue
Block a user