Skip to content

Commit

Permalink
Merge pull request #712 from nolar/fix-peering-kwargs
Browse files Browse the repository at this point in the history
Fix unused but passed kwargs to peering routines
  • Loading branch information
nolar committed Mar 10, 2021
2 parents a9d8f13 + 14c5774 commit 484f947
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions kopf/engines/peering.py
Expand Up @@ -95,6 +95,9 @@ async def process_peering_event(
autoclean: bool = True,
stream_pressure: Optional[asyncio.Event] = None, # None for tests
conflicts_found: Optional[primitives.Toggle] = None, # None for tests & observation
# Must be accepted whether used or not -- as passed by watcher()/worker().
resource_indexed: Optional[primitives.Toggle] = None, # None for tests & observation
operator_indexed: Optional[primitives.ToggleSet] = None, # None for tests & observation
) -> None:
"""
Handle a single update of the peers by us or by other operators.
Expand Down

0 comments on commit 484f947

Please sign in to comment.