chore: raise error if any in storage post_process
I'm not totally sure it's the way to go (maybe ignoring here is fine ?), but it seems still more usefull to have a proper error instead of a python error a few lines forward.
This commit is contained in:
parent
8cbed32f3d
commit
8ca3a2248d
1 changed files with 3 additions and 2 deletions
|
@ -41,8 +41,9 @@ class UmapManifestStaticFilesStorage(ManifestStaticFilesStorage):
|
||||||
def post_process(self, paths, **options):
|
def post_process(self, paths, **options):
|
||||||
collected = super().post_process(paths, **options)
|
collected = super().post_process(paths, **options)
|
||||||
for original_path, processed_path, processed in collected:
|
for original_path, processed_path, processed in collected:
|
||||||
if not processed_path:
|
if isinstance(processed, Exception):
|
||||||
print("Unused or missing file?", original_path)
|
print("Error with file", original_path)
|
||||||
|
raise processed
|
||||||
if processed_path.endswith(".js"):
|
if processed_path.endswith(".js"):
|
||||||
path = Path(settings.STATIC_ROOT) / processed_path
|
path = Path(settings.STATIC_ROOT) / processed_path
|
||||||
initial = path.read_text()
|
initial = path.read_text()
|
||||||
|
|
Loading…
Reference in a new issue