Caleb Fenton

Results 86 comments of Caleb Fenton

Any idea what this one might be called? It could just be a proguard configuration, and a few other tools might do this also.

Thanks for this. Saves me some time writing my own docker-compose and I see you fixed some other bugs too

Btw, if anyone is curious, this is really easy to do without any special API call: ```python @signals.worker_ready.connect def unlock_all(**kwargs): lock_keys = redis_db.get('qo_*') redis_db.delete(*lock_keys) ```

Thanks for getting back with me. I think you're right that the hard part is generalizing the approach to work with different backends. I was only thinking in terms of...

Ahh, I think you're right @chpmrc, good find. I would be best to run this code _once_ when celery first starts. I'm not sure if there's a good, clean hook...

I think it has something to do with a 3 second timeout being hit, which seems to confuse the state of jobserver so it loses track of the context. I'm...

For the record, was never able to fix. I just used a work around.

HTTP 200 with a status of ERROR may also mean akka had a timeout (e.g. akka.pattern.AskTimeoutException). This means if you're parsing responses, getting 'ERROR' may mean the job had an...

Can you share the file? Hard to reproduce without it.

We already do something like this. https://github.com/rednaga/APKiD/blob/master/apkid/rules/dex/compilers.yara#L178 Anyone want to take a stab at it? I may have time next week.