webkit-perf.appspot.com takes forever to load right now because we update manifest, dashboard, etc... on demand. It creates memcache on demand but we should be doing in taskqueue instead.
Created attachment 126251 [details] Fixes the bug
FWIW, I've already pushed this version to webkit-perf.appspot.com.
Comment on attachment 126251 [details] Fixes the bug View in context: https://bugs.webkit.org/attachment.cgi?id=126251&action=review > Websites/webkit-perf.appspot.com/controller.py:47 > + self.response.headers['Content-Type'] = 'application/json; charset=utf-8' You shouldn't need a charset parameter for application/json. It's always UTF-8. charset parameters are only for text/... MIME types. > Websites/webkit-perf.appspot.com/controller.py:65 > + self.response.headers['Content-Type'] = 'application/json; charset=utf-8' ditto > Websites/webkit-perf.appspot.com/controller.py:83 > + self.response.headers['Content-Type'] = 'application/json; charset=utf-8' ditto
Comment on attachment 126251 [details] Fixes the bug View in context: https://bugs.webkit.org/attachment.cgi?id=126251&action=review >> Websites/webkit-perf.appspot.com/controller.py:47 >> + self.response.headers['Content-Type'] = 'application/json; charset=utf-8' > > You shouldn't need a charset parameter for application/json. It's always UTF-8. charset parameters are only for text/... MIME types. I see. Will fix.
Committed r107274: <http://trac.webkit.org/changeset/107274>