File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,14 @@ def build_consumer_config(
1717 security_protocol : str ,
1818 group_id : str ,
1919 bootstrap_servers : List [str ],
20+ ** kwargs : Any ,
2021 ):
2122 return {
2223 "bootstrap.servers" : "," .join (bootstrap_servers ),
2324 "auto.offset.reset" : offset_reset ,
2425 "security.protocol" : security_protocol ,
2526 "group.id" : group_id ,
27+ ** kwargs ,
2628 }
2729
2830 @classmethod
@@ -33,10 +35,15 @@ def new(
3335 bootstrap_servers : List [str ],
3436 offset_reset : str ,
3537 security_protocol : str ,
38+ ** kwargs : Any ,
3639 ):
3740 consumer = Consumer (
3841 cls .build_consumer_config (
39- offset_reset , security_protocol , group_id , bootstrap_servers
42+ offset_reset ,
43+ security_protocol ,
44+ group_id ,
45+ bootstrap_servers ,
46+ ** kwargs ,
4047 )
4148 )
4249 consumer .subscribe ([topic_name ])
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " nodestream"
3- version = " 0.14.15 "
3+ version = " 0.14.16 "
44description = " A Fast, Declarative ETL for Graph Databases."
55license = " GPL-3.0-only"
66authors = [
You can’t perform that action at this time.
0 commit comments