This is an automated email from the git hooks/post-receive script.
tom pushed a commit to branch master
in repository depictor.
The following commit(s) were added to refs/heads/master by this push:
new e23621d Hardcode moria's IP address to avoid an IP block. Fixes #17
e23621d is described below
commit e23621de2c069a33ca57e235b1df860b3cd74bf3
Author: Tom Ritter <tom(a)ritter.vg>
AuthorDate: Fri Aug 19 23:40:51 2022 -0400
Hardcode moria's IP address to avoid an IP block. Fixes #17
---
utility.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/utility.py b/utility.py
index cef4979..58b1451 100755
--- a/utility.py
+++ b/utility.py
@@ -21,6 +21,7 @@ def get_dirauths():
if _dirAuths == None:
#Remove any BridgeAuths
_dirAuths = dict((k.lower(), v) for (k, v) in stem.directory.Authority.from_cache().items() if v.v3ident)
+ _dirAuths['moria1'].address = "128.31.0.34"
return _dirAuths
_bwAuths = None
@@ -151,4 +152,4 @@ class FileMock():
if __name__ == "__main__":
skew = get_clockskew()
for c in skew:
- print(c, skew[c])
\ No newline at end of file
+ print(c, skew[c])
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.