annotate roundup/anypy/time_.py @ 8467:8a9fc2d74740

fix: replace localhost with ip address in case localhost is ipv6 addr?? Norbert had an issue with his docker container where the healthcheck was timing out/failing. He diagnosed it as a ipv6 address bound to localhost. Not sure if this is the right fix. Might be better to determine where localhost is bound (V4 or V6 address) but I don't have an environment I can test with.
author John Rouillard <rouilj@ieee.org>
date Fri, 31 Oct 2025 20:55:01 -0400
parents 60a6d50298c4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7209
c1227f883177 Implement password hash testing using new roundup-admin perftest.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
1 try:
c1227f883177 Implement password hash testing using new roundup-admin perftest.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
2 # Python 3+
c1227f883177 Implement password hash testing using new roundup-admin perftest.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
3 from time import perf_counter
c1227f883177 Implement password hash testing using new roundup-admin perftest.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
4 except (ImportError, AttributeError):
c1227f883177 Implement password hash testing using new roundup-admin perftest.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
5 # Python 2.5-2.7
7774
60a6d50298c4 chore: fix whitespace before comment
John Rouillard <rouilj@ieee.org>
parents: 7228
diff changeset
6 from time import clock as perf_counter # noqa: F401

Roundup Issue Tracker: http://roundup-tracker.org/