File tree 1 file changed +6
-2
lines changed
airbyte_cdk/sources/declarative/partition_routers
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -48,11 +48,15 @@ def stream_slices(self) -> Iterable[StreamSlice]:
48
48
# Iterate over partitions lazily from the underlying router
49
49
for partition in self .underlying_partition_router .stream_slices ():
50
50
# Extract the partition key (assuming single key-value pair, e.g., {"board_ids": value})
51
- if len (partition .partition .values ()) != 1 :
51
+ partition_keys = list (partition .partition .keys ())
52
+ # skip parent_slice as it is part of SubstreamPartitionRouter partition
53
+ if "parent_slice" in partition_keys :
54
+ partition_keys .remove ("parent_slice" )
55
+ if len (partition_keys ) != 1 :
52
56
raise ValueError (
53
57
f"GroupingPartitionRouter expects a single partition key-value pair. Got { partition .partition } "
54
58
)
55
- key = next ( iter ( partition .partition . values ()), None )
59
+ key = partition .partition [ partition_keys [ 0 ]]
56
60
57
61
# Skip duplicates if deduplication is enabled
58
62
if self .deduplicate and key in seen_keys :
You can’t perform that action at this time.
0 commit comments