Skip to content

Commit 109e1dd

Browse files
committed
add error handling to release_address() method
1 parent d94cb56 commit 109e1dd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ip_pool/ip_pool.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,11 @@ def address_for(self, hostname: str) -> IPv4Address:
5858
return addr
5959

6060
def release_address(self, hostname):
61-
addr = self._hostnames.pop(hostname)
61+
try:
62+
addr = self._hostnames.pop(hostname)
63+
except KeyError:
64+
raise IPAddressPoolException(f"No address for hostname {hostname}")
65+
6266
self._ipaddr_pool.append(addr)
6367
self._ipaddr_pool.sort()
6468
self._save()

0 commit comments

Comments
 (0)