Tuesday, February 2, 2016

Hi,

I'm looking at upgrading my application from 1.6 to 1.9.2... An issue I'm encountering now is that on Heroku, running collectstatic doesn't work on 1.9.2. The odd  things is that if I try 1.8.7 instead, it work great...


Running:
remote: python manage.py collectstatic -i docs -i tests --noinput -v 3
remote: Copying '/app/accounts/static/...js'
remote: Copying '/app/accounts/static/....js'
remote: Copying '/app/accounts/static/....js'
... [ Thousands of lines... ]
remote: Found another file with the destination path 'app/controllers/...js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
remote: Found another file with the destination path 'app/controllers/....js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
remote: Traceback (most recent call last):
remote:             output = self.handle(*args, **options)
remote:   File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py", line 176, in handle
remote:     collected = self.collect()
remote:   File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py", line 114, in collect
remote:     level=1,
remote:   File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py", line 201, in log
remote:     self.stdout.write(msg)
remote:   File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/base.py", line 111, in write
remote:     self._out.write(force_str(style_func(msg)))
remote: IOError: [Errno 11] Resource temporarily unavailable


I do have a lot of static file... Unsure that matter.

An other things is that it doesn't seem to fail at the same point in the collectstatic command every time I run it. So look like it's failing on different file every time I run it...


But I actually don't use django-require... (It's not in my requirement.txt of what I install on Heroku)


I also see it fail (sometime but much less often as the "Resource temporarily unavaible" error this way:
remote: Found another file with the destination path 'accounts/..html'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
remote: Found another file with the destination path 'accounts/...js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
remote: Traceback (most recent call last):
remote:   File "manage.py", line 10, in <module>
remote:     execute_from_command_line(sys.argv)
remote:     utility.execute()
remote:         self.execute(*args, **cmd_options)

Which is even less helpful in figuring out what's going on...


So I'm looking for some though on what this error mean and how to debug it further. We never encountered that error when on 1.6. Testing on 1.8.7 works fine but then if I only change the Django version (nothing else) to 1.9.2, I start getting that error...


Thanks everyone!

Denis Bellavance
Peach
Seattle

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAOdjZ6K7j9Xv70%2BRYSBEdFom-VWRLMMy_e2CRZzfqmngA1ZBrw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment