Skip to content

Commit

Permalink
Move order of write_batch_size
Browse files Browse the repository at this point in the history
  • Loading branch information
damondouglas committed Dec 5, 2024
1 parent 2e43e29 commit 2e030c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/trigger_files/beam_PostCommit_Python.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"comment": "Modify this file in a trivial way to cause this test suite to run.",
"modification": 5
"modification": 6
}

4 changes: 2 additions & 2 deletions sdks/python/apache_beam/io/jdbc.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,11 @@ def default_io_expansion_service(classpath=None):
('disable_autocommit', typing.Optional[bool]),
('output_parallelization', typing.Optional[bool]),
('autosharding', typing.Optional[bool]),
('write_batch_size', typing.Optional[np.int64]),
('partition_column', typing.Optional[str]),
('partitions', typing.Optional[np.int16]),
('max_connections', typing.Optional[np.int16]),
('driver_jars', typing.Optional[str]),
('write_batch_size', typing.Optional[np.int64])],
('driver_jars', typing.Optional[str])],
)

DEFAULT_JDBC_CLASSPATH = ['org.postgresql:postgresql:42.2.16']
Expand Down

0 comments on commit 2e030c0

Please sign in to comment.