Skip to content

Commit

Permalink
Merge pull request #3 from Naruno/Added-integration-wait-amount-to-ca…
Browse files Browse the repository at this point in the history
…che-times

Added integration wait amount to cache times
  • Loading branch information
onuratakan authored Apr 4, 2023
2 parents aa368b8 + d582fb7 commit 85eaa41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/address_name_system/address_name_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __init__(self, password, encrypt_key=None, trusted_users=[], self_ip_cache_t
self.last_self_ip_time = 0
self.self_ip_cache_time = self_ip_cache_time + self.integration.wait_amount
self.last_ip_time = []
self.ip_cache_time = ip_cache_time
self.ip_cache_time = ip_cache_time + self.integration.wait_amount
self.self_the_ip = None

self.load_cache()
Expand Down

0 comments on commit 85eaa41

Please sign in to comment.