Skip to content

Commit

Permalink
The POSTGRESQL_PORT env variable should be a string, not an int
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Marchant committed Aug 4, 2021
1 parent 2085bd1 commit df0111d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hexa/plugins/connector_postgresql/credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def notebooks_credentials(credentials: NotebooksCredentials):
f"{database.env_name}_USERNAME": database.username,
f"{database.env_name}_PASSWORD": database.password,
f"{database.env_name}_DATABASE": database.database,
f"{database.env_name}_PORT": database.port,
f"{database.env_name}_PORT": str(database.port),
f"{database.env_name}_URL": database.url,
}
)
Expand Down

0 comments on commit df0111d

Please sign in to comment.