mozilla / crlite

WebPKI-level Certificate Revocation via Multi-Level Bloom Filter Cascade
http://www.cs.umd.edu/~dml/papers/crlite_oakland17.pdf
Mozilla Public License 2.0
70 stars 8 forks source link

Type error in moz_kinto_publisher #203

Closed jschanck closed 2 years ago

jschanck commented 2 years ago

We got this attribute error on staging, this part of the script can't currently be tested without write access to a Kinto server.

Traceback (most recent call last): File "moz_kinto_publisher/main.py", line 1237, in <module> main()
File "moz_kinto_publisher/main.py", line 1233, in main raise e
File "moz_kinto_publisher/main.py", line 1227, in main publish_intermediates(args=args, rw_client=rw_client)
File "moz_kinto_publisher/main.py", line 630, in publish_intermediates num_verified_enrolled = sum(1 for v in verified_intermediates if v.crlite_enrolled)
File "moz_kinto_publisher/main.py", line 630, in <genexpr> num_verified_enrolled = sum(1 for v in verified_intermediates if v.crlite_enrolled)
AttributeError: 'str' object has no attribute 'crlite_enrolled'

We should improve the tests here, I've opened #202 to track that.