Skip to content

Commit

Permalink
clean up old variables
Browse files Browse the repository at this point in the history
  • Loading branch information
seba-aln committed Oct 1, 2024
1 parent 2aad937 commit be2ffa9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/acceptance/subscribe/steps/given_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async def step_impl(context: PNContext):
context.pn_config.enable_presence_heartbeat = True
context.pn_config.reconnect_policy = PNReconnectionPolicy.LINEAR
context.pn_config.subscribe_request_timeout = 10
context.pn_config.RECONNECTION_INTERVAL = 2
context.pn_config.reconnection_interval = 2
context.pn_config.set_presence_timeout(3)
context.pubnub = PubNubAsyncio(context.pn_config, subscription_manager=EventEngineSubscriptionManager)

Expand Down
4 changes: 1 addition & 3 deletions tests/functional/event_engine/test_managed_effect.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@

class FakeConfig:
reconnect_policy = PNReconnectionPolicy.NONE
RECONNECTION_INTERVAL = 1
RECONNECTION_MIN_EXPONENTIAL_BACKOFF = 1
RECONNECTION_MAX_EXPONENTIAL_BACKOFF = 32
reconnection_interval = 1
maximum_reconnection_retries = 3


Expand Down

0 comments on commit be2ffa9

Please sign in to comment.