| Index: chrome/common/extensions/docs/server2/content_provider.py
|
| diff --git a/chrome/common/extensions/docs/server2/content_provider.py b/chrome/common/extensions/docs/server2/content_provider.py
|
| index 11ec8f28ebfb682175717175d119b1adb60cada5..cf2ce015db7a74655fd08e3dc865aa3574c9a341 100644
|
| --- a/chrome/common/extensions/docs/server2/content_provider.py
|
| +++ b/chrome/common/extensions/docs/server2/content_provider.py
|
| @@ -85,5 +85,7 @@ class ContentProvider(object):
|
|
|
| def Cron(self):
|
| # Running Refresh() on the file system is enough to pull GitHub content,
|
| - # which is all we need for now.
|
| - self.file_system.Refresh().Get()
|
| + # which is all we need for now while the full render-every-page cron step
|
| + # is in effect.
|
| + # TODO(kalman): Walk over the whole filesystem and compile the content.
|
| + return self.file_system.Refresh()
|
|
|