Skip to content

Commit

Permalink
change conflicting method name
Browse files Browse the repository at this point in the history
  • Loading branch information
rodolfomiranda committed Oct 2, 2024
1 parent 65f3937 commit 4a9d63d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/keria/app/agenting.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def delete(self, agent):

del self.agents[agent.caid]

def close(self, agent):
def shut(self, agent):
logger.info(f"closing idle agent {agent.caid}")
self.remove(agent.doers)
self.remove([agent])
Expand Down Expand Up @@ -828,7 +828,7 @@ def recur(self, tyme=None):
idle.append(caid)

for caid in idle:
self.agency.close(self.agents[caid])
self.agency.shut(self.agents[caid])
yield self.tock

def loadEnds(app):
Expand Down

0 comments on commit 4a9d63d

Please sign in to comment.