Skip to content

Commit

Permalink
shutdown_requested Should not be Abstract (#57)
Browse files Browse the repository at this point in the history
Existing users should be able to upgrade the library without issues.
Removed the abstract decorator to ensure that existing users'
applications continue to work normally.
  • Loading branch information
pfifer authored Jun 27, 2017
1 parent 1eee85c commit 761d71c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion amazon_kclpy/kcl.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,6 @@ def shutdown(self, checkpointer, reason):
'''
raise NotImplementedError

@abc.abstractmethod
def shutdown_requested(self, checkpointer):
"""
Called by a KCLProcess instance to indicate that this record processor is about to be be shutdown. This gives
Expand Down
1 change: 0 additions & 1 deletion amazon_kclpy/v2/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ def shutdown(self, shutdown_input):
"""
raise NotImplementedError

@abc.abstractmethod
def shutdown_requested(self, shutdown_requested_input):
"""
Called by a KCLProcess instance to indicate that this record processor is about to be be shutdown. This gives
Expand Down

0 comments on commit 761d71c

Please sign in to comment.