Skip to content

Commit ebbbfdb

Browse files
authored
Fixes postgres port default value (#615)
* Fixes postgres port default value Updates the default port value for the PostgreSQL instance to be a string, ensuring compatibility with the configuration schema. Updates the requirements file to use a specific version of quixstreams[postgresql] instead of a direct github link. * Updates quixstreams dependencies to 3.14.1. Updates quixstreams dependencies in destination connectors to version 3.14.1. Removes git+ install method in favor of standard versioning.
1 parent aff8860 commit ebbbfdb

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
quixstreams[elasticsearch]==3.13.1
1+
quixstreams[elasticsearch]==3.14.1
22
python-dotenv
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# TODO: remove "@ git+" version of install before merging PR
2-
quixstreams[influxdb3] @ git+https://github.com/quixio/quix-streams.git
2+
quixstreams[influxdb3]==3.14.1
33
python-dotenv
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# TODO: remove "@ git+" version of install before merging PR
2-
quixstreams[mongodb] @ git+https://github.com/quixio/quix-streams.git@sink/mongodb-auth-adjust
2+
quixstreams[mongodb]==3.14.1
33
python-dotenv

python/destinations/postgres/library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"Type": "EnvironmentVariable",
3535
"InputType": "FreeText",
3636
"Description": "Port number for the PostgreSQL instance.",
37-
"DefaultValue": 80,
37+
"DefaultValue": "80",
3838
"Required": true
3939
},
4040
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# TODO: remove "@ git+" version of install before merging PR
2-
quixstreams[postgresql] @ git+https://github.com/quixio/quix-streams.git@sinks/postgres-tablename-variable
2+
quixstreams[postgresql]==3.14.1
33
python-dotenv
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
quixstreams==3.13.1
1+
quixstreams==3.14.1
22
python-dotenv
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
quixstreams==3.13.1
1+
quixstreams==3.14.1
22
python-dotenv

0 commit comments

Comments
 (0)