Skip to content

Commit fe21ffc

Browse files
committed
refactor: Drop unused is_alive from AsyncUpdateProcessor
is_alive is never called on the async path; it was only mirrored from the sync UpdateProcessor's BackgroundOperation base. The async interface is defined fresh, so it omits the vestigial method.
1 parent 6a5ca9c commit fe21ffc

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

ldclient/interfaces.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -481,12 +481,6 @@ async def stop(self):
481481
"""
482482
pass
483483

484-
def is_alive(self) -> bool:
485-
"""
486-
Returns whether the update processor is alive or not.
487-
"""
488-
return True
489-
490484
def initialized(self) -> bool: # type: ignore[empty-body]
491485
"""
492486
Returns whether the update processor has received feature flags and has initialized its feature store.

0 commit comments

Comments
 (0)