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
{{ message }}
This repository has been archived by the owner on Feb 17, 2019. It is now read-only.
never triggers a repopulation of the cache, e.g. we're stuck forever as the cache won't ever be repopulated with rebuilt output.
Cache repopulation does work if I touch the entrypoint but we have 10 - 100 entrypoints for each of our customers, touching them all isn't an option as it would pollute our commits enormously.
The text was updated successfully, but these errors were encountered:
NinoFloris
changed the title
Cache is never invalidated when dependency changes
Cache is never repopulated when dependency changes
Feb 2, 2018
NinoFloris
changed the title
Cache is never repopulated when dependency changes
Cache is never repopulated when just the dependency changes
Feb 2, 2018
Following the code and the debug messages we see the following
Looking at the code in broccoli_sass_compiler I see that this function call
https://github.com/sass-eyeglass/broccoli-eyeglass/blob/master/lib/broccoli_sass_compiler.js#L395
is right outside the
try
that setserror.key = key
in itscatch
which means the check athandleCacheMiss
https://github.com/sass-eyeglass/broccoli-eyeglass/blob/master/lib/broccoli_sass_compiler.js#L614never triggers a repopulation of the cache, e.g. we're stuck forever as the cache won't ever be repopulated with rebuilt output.
Cache repopulation does work if I touch the entrypoint but we have 10 - 100 entrypoints for each of our customers, touching them all isn't an option as it would pollute our commits enormously.
The text was updated successfully, but these errors were encountered: