Skip to content

Commit 4e255d4

Browse files
committed
Casting redshift port to int.
1 parent 0fdf395 commit 4e255d4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

awswrangler/redshift.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ def connect(
395395
user=attrs.user,
396396
database=attrs.database,
397397
password=attrs.password,
398-
port=attrs.port,
398+
port=int(attrs.port),
399399
host=attrs.host,
400400
ssl=ssl,
401401
timeout=timeout,

requirements-dev.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ flake8==3.8.4
55
mypy==0.800
66
pydocstyle==5.1.1
77
doc8==0.8.1
8-
tox==3.21.2
8+
tox==3.21.3
99
pytest==6.2.2
1010
pytest-cov==2.11.1
1111
pytest-xdist==2.2.0
@@ -17,7 +17,7 @@ twine==3.3.0
1717
sphinx==3.4.3
1818
sphinx_bootstrap_theme==0.7.1
1919
moto==1.3.16
20-
jupyterlab==3.0.5
20+
jupyterlab==3.0.6
2121
s3fs==0.4.2
2222
python-Levenshtein==0.12.1
2323
-e .[sqlserver]

0 commit comments

Comments
 (0)