Jesse Schwartzentruber

Results 73 comments of Jesse Schwartzentruber

This crash is in Django. I do have a Django 2.0 branch that probably works, but I haven't updated it in a while.

I think the intention is this: | url | use toolfilter | show bucketed | |---|---|---| | `crashes/` | yes | no | | `crashes/?all=1` | yes | yes |...

Yep, you're right. The safest way is to introduce (or re-introduce?) a cache of what has been tried already. This would solve other redundant work issues like #57 too, although...

There are a number of hidden URL parameters to `/crashmanager/signatures/new/` we should expose in UI: stackframes=int forcecrashaddress=0, 1 forcecrashinstruction=0, 1 Regarding Rust backtraces, if you see patterns to the common...

> What exactly is missing? I can add this info to the crash report but FFPuppet manually updates ASAN_OPTIONS (https://github.com/MozillaSecurity/ffpuppet/blob/master/ffpuppet/helpers.py#L229) so it won't be accurate. Maybe FFPuppet should print them...

I changed the default logging verbosity to INFO for avalanche because it is super verbose. In general, the adapter should probably tweak the loggers used by its imports if they...

Thanks for reporting this. Would you be able to make a pull-request for your fix?

to manually fix ```python counts={} for key in BucketHit.objects.values_list("bucket_id", "tool_id", "begin"): counts.setdefault(key, 0) counts[key] += 1 bad={k:v for k,v in counts.items() if v > 1} for bid,tid,ts in bad: a,b=BucketHit.objects.filter(bucket_id=bid,tool_id=tid,begin=ts)...