Skip to content

Commit

Permalink
Merge pull request #11 from grongierisc/main
Browse files Browse the repository at this point in the history
  • Loading branch information
daimor authored Dec 19, 2023
2 parents 213f8c1 + 0ac23fa commit 9a3bee2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion django_iris/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ def get_connection_params(self):
conn_params['password'] = settings_dict['PASSWORD']
if 'TIMEOUT' in settings_dict:
conn_params['timeout'] = settings_dict['TIMEOUT']

if 'EMBEDDED' in settings_dict:
conn_params['embedded'] = settings_dict['EMBEDDED']
if 'CONNECTION_STRING' in settings_dict:
conn_params['connectionstr'] = settings_dict['CONNECTION_STRING']
else:
Expand Down

0 comments on commit 9a3bee2

Please sign in to comment.