Alec Clowes

Results 8 issues of Alec Clowes

This causes it to wait for a child to exit instead of running in a busy loop. This was intended to be in https://github.com/doitintl/secrets-init/pull/14 as seen in the discussion here...

This code is the main entrypoint for the command `yawn worker` and it polls for tasks that are waiting to run. https://codecov.io/gh/aclowes/yawn/src/bf68cde76aaef0b00e0d416f84424eae520843c4/yawn/worker/main.py

help wanted

help wanted

for customizing the database connection, etc

``` python from mongoengine.document import Document from mongoengine import fields class MyCollection(Document): fieldA = fields.IntField() fieldB = fields.IntField() def __unicode__(self): return '%s %s' % (self.fieldA, self.fieldB) MyCollection.objects.create(fieldA=1, fieldB=1) MyCollection.objects.create(fieldA=2, fieldB=2)...

The `min_number_of_errors` filter is not useful for accepting traces only when the root span has an error. It would be useful to add a property to the trace like `statuscode`...