mirror of
https://github.com/healthchecks/healthchecks.git
synced 2026-04-25 15:05:49 +03:00
[GH-ISSUE #615] Build problem with 1.25.0 #448
Labels
No labels
bug
bug
bug
feature
good-first-issue
new integration
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/healthchecks#448
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @SuperSandro2000 on GitHub (Mar 5, 2022).
Original GitHub issue: https://github.com/healthchecks/healthchecks/issues/615
I am facing some build issues which is fixed on the latest master.
Compressing... CommandError: An error occurred during rendering integrations/add_spike.html: [Errno 2] No such file or directory: '/app/static-collected/CACHE/js/output.b4ba48ed4f66.js'I think tagging a new version would be already enough to fix this because it works on latest master.
@cuu508 commented on GitHub (Mar 5, 2022):
For the failing build, what is your installed django-compressor version (what does pip freeze say?)?
@cuu508 commented on GitHub (Mar 7, 2022):
Ah, I can reproduce it:
I suspect it's a bug in django-compressor, it is non-deterministic, and it could resurface again. There's a potentially related bug being worked on (https://github.com/django-compressor/django-compressor/issues/1099). Once that's fixed, I'll check if I can still reproduce this one.
@SuperSandro2000 commented on GitHub (Mar 7, 2022):
I am building in docker and basically cloning the project and then do
pip install -r requirements.txtwhich means I would havedjango-compressor==3.0.Great! Thank you so much.
@cuu508 commented on GitHub (Mar 7, 2022):
This might work as a workaround – replace https://github.com/SuperSandro2000/docker-images/blob/master/healthchecks/Dockerfile#L95 with
@SuperSandro2000 commented on GitHub (Mar 7, 2022):
That did the trick for now. Thanks