On Fri, Mar 7, 2014 at 11:20 AM, Yuriy Taraday <[email protected]> wrote:
> All in all it sounds like an eventlet bug. I'm not sure how it can be > dealt with though. > Digging into it I found out that eventlet uses time.time() by default that is not monotonic. There's no clear way to replace it, but you can workaround this: 1. Get monotonic clock function here: http://stackoverflow.com/a/1205762/238308 (note that for FreeBSD or MacOS you'll have to use different constant). 2. Make eventlet's hub use it: eventlet.hubs._threadlocal.hub = eventlet.hubs.get_default_hub().Hub(monotonic_time) -- Kind regards, Yuriy.
_______________________________________________ OpenStack-dev mailing list [email protected] http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
