Skip to content

Commit

Permalink
Correct password key
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonHaynes committed Apr 12, 2015
1 parent aa64f54 commit ff411a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion myriadeploy/create_deployment.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def _get_header(path, name='myria', rest_port=8753, database_type='postgresql',
if database_username:
header += 'username = %s\n' % database_username
if database_password:
header += 'password = %s\n' % database_password
header += 'database_password = %s\n' % database_password
if heap:
header += 'max_heap_size = -Xmx%s\n' % heap
if debug:
Expand Down

0 comments on commit ff411a8

Please sign in to comment.