Bug 231707
Summary: | Committers/contributors autocomplete failing | ||
---|---|---|---|
Product: | WebKit | Reporter: | Sam Sneddon [:gsnedders] <gsnedders> |
Component: | WebKit Website | Assignee: | Nobody <webkit-unassigned> |
Status: | NEW | ||
Severity: | Normal | CC: | aakash_jain, ap, jbedard, jond, webkit-bug-importer |
Priority: | P2 | Keywords: | InRadar |
Version: | WebKit Nightly Build | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
See Also: | https://bugs.webkit.org/show_bug.cgi?id=229690 |
Sam Sneddon [:gsnedders]
Many people are having Bugzilla autocompletion fail to work since https://commits.webkit.org/242672@main landed six days ago.
While https://commits.webkit.org/241245@main landed over a month ago, committers-autocomplete.js is served as cacheable for a year, hence we actually need to wait a year for caches to expire or load the file from a different URL (e.g. by adding a query string to it).
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Jonathan Bedard
(In reply to Sam Sneddon [:gsnedders] from comment #0)
> committers-autocomplete.js is served as cacheable for a year, hence we
That's the bit that seems like the bug. contributors.json is updated once or twice a month.
Sam Sneddon [:gsnedders]
(In reply to Jonathan Bedard from comment #1)
> (In reply to Sam Sneddon [:gsnedders] from comment #0)
>
> > committers-autocomplete.js is served as cacheable for a year, hence we
>
> That's the bit that seems like the bug. contributors.json is updated once or
> twice a month.
contributors.json is uncacheable (which arguably is bad too!), it's only the committers-autocomplete.js script which is cached for too long.
Radar WebKit Bug Importer
<rdar://problem/84252131>
Jonathan Bedard
(In reply to Sam Sneddon [:gsnedders] from comment #2)
> (In reply to Jonathan Bedard from comment #1)
> > (In reply to Sam Sneddon [:gsnedders] from comment #0)
> >
> > > committers-autocomplete.js is served as cacheable for a year, hence we
> >
> > That's the bit that seems like the bug. contributors.json is updated once or
> > twice a month.
>
> contributors.json is uncacheable (which arguably is bad too!), it's only the
> committers-autocomplete.js script which is cached for too long.
Oh, missed that it was the JS file. That makes more sense.