Skip to content

Commit

Permalink
Fix kadmind stopping
Browse files Browse the repository at this point in the history
stop_daemon needs a leading underscore.
  • Loading branch information
PromyLOPh authored and frozencemetery committed Jan 16, 2020
1 parent 4123693 commit 406c76a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion k5test/realm.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def start_kadmind(self, env=None):

def stop_kadmind(self):
assert(self._kadmind_proc is not None)
self.stop_daemon(self._kadmind_proc)
self._stop_daemon(self._kadmind_proc)
self._kadmind_proc = None

def stop(self):
Expand Down

0 comments on commit 406c76a

Please sign in to comment.