Island: Reformat comments

This commit is contained in:
Mike Salvatore 2022-06-26 09:40:14 -04:00
parent 4530cf3071
commit e0047e485b
1 changed files with 8 additions and 14 deletions

View File

@ -53,13 +53,10 @@ else:
return result
# The local IP addresses list should not change often. Therefore, we can cache the result and
# never call this function
# more than once. This stopgap measure is here since this function is called a lot of times
# during the report
# generation.
# This means that if the interfaces of the Island machine change, the Island process needs to be
# restarted.
# The local IP addresses list should not change often. Therefore, we can cache the result and never
# call this function more than once. This stopgap measure is here since this function is called a
# lot of times during the report generation. This means that if the interfaces of the Island machine
# change, the Island process needs to be restarted.
@lru(maxsize=1)
def local_ip_addresses() -> Sequence[str]:
ip_list = []
@ -69,13 +66,10 @@ def local_ip_addresses() -> Sequence[str]:
return ip_list
# The subnets list should not change often. Therefore, we can cache the result and never call
# this function
# more than once. This stopgap measure is here since this function is called a lot of times
# during the report
# generation.
# This means that if the interfaces or subnets of the Island machine change, the Island process
# needs to be restarted.
# The subnets list should not change often. Therefore, we can cache the result and never call this
# function more than once. This stopgap measure is here since this function is called a lot of times
# during the report generation. This means that if the interfaces or subnets of the Island machine
# change, the Island process needs to be restarted.
@lru(maxsize=1)
def get_subnets():
subnets = []