b13 / warmup

Warms up some TYPO3 caches via CLI
GNU General Public License v2.0
11 stars 6 forks source link

[BUGFIX] Add missing 'RootlineUtility::get()' call #11

Closed sbuerk closed 2 years ago

sbuerk commented 2 years ago

RootlineWarmupService() creates the instance of the Typo3 RootlineUtility without calling method get(). Thus rootline caches will not be created, and traversing the page tree is a waste of time in this case.

RootlineV8Service calls this method on the RootlineUtility properly.

This change simply adds the missing method call.