Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Issue 512453002: Docserver: Add more skip_not_found support and cache "not found"s (Closed)

Created:
6 years, 3 months ago by ahernandez
Modified:
6 years, 3 months ago
CC:
chromium-reviews, chromium-apps-reviews_chromium.org, extensions-reviews_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

Docserver: Add more skip_not_found support and cache "not found"s BUG=305280 NOTRY=True Committed: https://crrev.com/e8fc5eb6f26108bd00f85108e1ec4272e6196481 Cr-Commit-Position: refs/heads/master@{#292212}

Patch Set 1 #

Total comments: 19

Patch Set 2 : #

Patch Set 3 : Bumpin yaml #

Unified diffs Side-by-side diffs Delta from patch set Stats (+100 lines, -42 lines) Patch
M chrome/common/extensions/docs/server2/app.yaml View 1 2 1 chunk +1 line, -1 line 0 comments Download
M chrome/common/extensions/docs/server2/caching_file_system.py View 1 3 chunks +26 lines, -10 lines 0 comments Download
M chrome/common/extensions/docs/server2/caching_file_system_test.py View 1 3 chunks +32 lines, -15 lines 0 comments Download
M chrome/common/extensions/docs/server2/chained_compiled_file_system.py View 1 chunk +3 lines, -3 lines 0 comments Download
M chrome/common/extensions/docs/server2/compiled_file_system.py View 1 chunk +10 lines, -8 lines 0 comments Download
M chrome/common/extensions/docs/server2/compiled_file_system_test.py View 1 chunk +18 lines, -0 lines 0 comments Download
M chrome/common/extensions/docs/server2/cron.yaml View 1 2 1 chunk +1 line, -1 line 0 comments Download
M chrome/common/extensions/docs/server2/file_system.py View 1 chunk +3 lines, -3 lines 0 comments Download
M chrome/common/extensions/docs/server2/local_file_system.py View 1 chunk +6 lines, -1 line 0 comments Download

Messages

Total messages: 23 (0 generated)
ahernandez
ahernandez.miralles@gmail.com changed reviewers: + kalman@chromium.org
6 years, 3 months ago (2014-08-26 20:08:37 UTC) #1
ahernandez
I'm submitting the skip_not_found changes in a separate CL. PTAL. https://codereview.chromium.org/512453002/diff/1/chrome/common/extensions/docs/server2/caching_file_system_test.py File chrome/common/extensions/docs/server2/caching_file_system_test.py (right): https://codereview.chromium.org/512453002/diff/1/chrome/common/extensions/docs/server2/caching_file_system_test.py#newcode237 ...
6 years, 3 months ago (2014-08-26 20:08:37 UTC) #2
not at google - send to devlin
Nice patch. Caching file system stuff is some of the most complicated/subtle code in the ...
6 years, 3 months ago (2014-08-26 20:59:35 UTC) #3
ahernandez
https://codereview.chromium.org/512453002/diff/1/chrome/common/extensions/docs/server2/caching_file_system.py File chrome/common/extensions/docs/server2/caching_file_system.py (right): https://codereview.chromium.org/512453002/diff/1/chrome/common/extensions/docs/server2/caching_file_system.py#newcode115 chrome/common/extensions/docs/server2/caching_file_system.py:115: if cached_read_values.get(path, (None, True))[1]] On 2014/08/26 20:59:34, kalman wrote: ...
6 years, 3 months ago (2014-08-27 00:07:23 UTC) #4
not at google - send to devlin
https://codereview.chromium.org/512453002/diff/1/chrome/common/extensions/docs/server2/caching_file_system.py File chrome/common/extensions/docs/server2/caching_file_system.py (right): https://codereview.chromium.org/512453002/diff/1/chrome/common/extensions/docs/server2/caching_file_system.py#newcode115 chrome/common/extensions/docs/server2/caching_file_system.py:115: if cached_read_values.get(path, (None, True))[1]] On 2014/08/27 00:07:22, ahernandez wrote: ...
6 years, 3 months ago (2014-08-27 01:23:56 UTC) #5
ahernandez
https://codereview.chromium.org/512453002/diff/1/chrome/common/extensions/docs/server2/caching_file_system.py File chrome/common/extensions/docs/server2/caching_file_system.py (right): https://codereview.chromium.org/512453002/diff/1/chrome/common/extensions/docs/server2/caching_file_system.py#newcode127 chrome/common/extensions/docs/server2/caching_file_system.py:127: # constantly trying to read a file we now ...
6 years, 3 months ago (2014-08-27 17:33:28 UTC) #6
ahernandez
https://codereview.chromium.org/512453002/diff/1/chrome/common/extensions/docs/server2/caching_file_system_test.py File chrome/common/extensions/docs/server2/caching_file_system_test.py (right): https://codereview.chromium.org/512453002/diff/1/chrome/common/extensions/docs/server2/caching_file_system_test.py#newcode175 chrome/common/extensions/docs/server2/caching_file_system_test.py:175: self.assertRaises(FileNotFoundError, future.Get) On 2014/08/26 20:59:34, kalman wrote: > Nice ...
6 years, 3 months ago (2014-08-27 18:54:38 UTC) #7
not at google - send to devlin
https://codereview.chromium.org/512453002/diff/1/chrome/common/extensions/docs/server2/caching_file_system_test.py File chrome/common/extensions/docs/server2/caching_file_system_test.py (right): https://codereview.chromium.org/512453002/diff/1/chrome/common/extensions/docs/server2/caching_file_system_test.py#newcode175 chrome/common/extensions/docs/server2/caching_file_system_test.py:175: self.assertRaises(FileNotFoundError, future.Get) On 2014/08/27 18:54:38, ahernandez wrote: > On ...
6 years, 3 months ago (2014-08-27 19:22:13 UTC) #8
ahernandez
https://codereview.chromium.org/512453002/diff/1/chrome/common/extensions/docs/server2/caching_file_system_test.py File chrome/common/extensions/docs/server2/caching_file_system_test.py (right): https://codereview.chromium.org/512453002/diff/1/chrome/common/extensions/docs/server2/caching_file_system_test.py#newcode175 chrome/common/extensions/docs/server2/caching_file_system_test.py:175: self.assertRaises(FileNotFoundError, future.Get) On 2014/08/27 19:22:13, kalman wrote: > On ...
6 years, 3 months ago (2014-08-27 19:29:00 UTC) #9
not at google - send to devlin
Ok, never mind about the extra tests. https://codereview.chromium.org/512453002/diff/1/chrome/common/extensions/docs/server2/caching_file_system_test.py File chrome/common/extensions/docs/server2/caching_file_system_test.py (right): https://codereview.chromium.org/512453002/diff/1/chrome/common/extensions/docs/server2/caching_file_system_test.py#newcode175 chrome/common/extensions/docs/server2/caching_file_system_test.py:175: self.assertRaises(FileNotFoundError, future.Get) ...
6 years, 3 months ago (2014-08-27 19:32:49 UTC) #10
ahernandez
New patch set is up. Did you want those superfluous tests removed?
6 years, 3 months ago (2014-08-27 20:15:55 UTC) #11
not at google - send to devlin
On 2014/08/27 20:15:55, ahernandez wrote: > New patch set is up. Did you want those ...
6 years, 3 months ago (2014-08-27 20:25:05 UTC) #12
not at google - send to devlin
lgtm, but bump the yaml versions.
6 years, 3 months ago (2014-08-27 20:26:25 UTC) #13
ahernandez
On 2014/08/27 20:26:25, kalman wrote: > lgtm, but bump the yaml versions. End version, right?
6 years, 3 months ago (2014-08-27 20:27:15 UTC) #14
not at google - send to devlin
On 2014/08/27 20:27:15, ahernandez wrote: > On 2014/08/27 20:26:25, kalman wrote: > > lgtm, but ...
6 years, 3 months ago (2014-08-27 20:28:10 UTC) #15
ahernandez
The CQ bit was checked by ahernandez.miralles@gmail.com
6 years, 3 months ago (2014-08-27 20:30:49 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ahernandez.miralles@gmail.com/512453002/40001
6 years, 3 months ago (2014-08-27 20:32:12 UTC) #17
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 3 months ago (2014-08-27 20:33:46 UTC) #18
commit-bot: I haz the power
Failed to commit the patch.
6 years, 3 months ago (2014-08-27 20:33:47 UTC) #19
ahernandez
The CQ bit was checked by ahernandez.miralles@gmail.com
6 years, 3 months ago (2014-08-27 20:37:18 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ahernandez.miralles@gmail.com/512453002/40001
6 years, 3 months ago (2014-08-27 20:39:09 UTC) #21
commit-bot: I haz the power
Committed patchset #3 (id:40001) as 93a7d53a576549f60dc691d9fea9a346003e17b4
6 years, 3 months ago (2014-08-27 20:40:15 UTC) #22
commit-bot: I haz the power
6 years, 3 months ago (2014-09-10 02:53:41 UTC) #23
Message was sent while issue was closed.
Patchset 3 (id:??) landed as
https://crrev.com/e8fc5eb6f26108bd00f85108e1ec4272e6196481
Cr-Commit-Position: refs/heads/master@{#292212}

Powered by Google App Engine
This is Rietveld 408576698