You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Been digging around a bit, and I have isolated the problem below:
When running the static cache full build task (through the cli), any URLs that are included in urlsToCache() methods in a page class get ?stage=Stage added to the URL. These cannot be processed by the task and will result in the Static Cache Full Build task to end up paused.
So for example, the URL below will end up in the list of URL's to be processed as '/?stage=Stage'
public function urlsToCache()
{
return [HomePage::get()->first()->Link()=>1];
}
Been digging around a bit, and I have isolated the problem below:
When running the static cache full build task (through the cli), any URLs that are included in urlsToCache() methods in a page class get ?stage=Stage added to the URL. These cannot be processed by the task and will result in the Static Cache Full Build task to end up paused.
So for example, the URL below will end up in the list of URL's to be processed as '/?stage=Stage'
Related issue:
#150
The text was updated successfully, but these errors were encountered: