Comment 5 for bug 1519767

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to ceilometer (stable/liberty)

Reviewed: https://review.openstack.org/250531
Committed: https://git.openstack.org/cgit/openstack/ceilometer/commit/?id=82b76dcf67d8eaea9752042e92dcabb9397f61c0
Submitter: Jenkins
Branch: stable/liberty

commit 82b76dcf67d8eaea9752042e92dcabb9397f61c0
Author: gordon chung <email address hidden>
Date: Thu Nov 26 16:03:30 2015 -0500

    re-implement thread safe fnmatch

    fnmatch is not thread safe for versions <= 2.7.9. We have used
    it in some places without any lock for concurrency scenario. This patch
    re-implements a thread safe match() which is very similar to fnmatch by
    using its translate function.

    Co-Authored-By: ZhiQiang Fan <email address hidden>
    Change-Id: I4b6c2ea72841201519144eb09ecf8c82b16b6143
    ref: https://hg.python.org/cpython/rev/fe12c34c39eb
    Closes-Bug: #1519767