我的一位同事从github检查了一个git存储库,这是一个大学的任务.但他无法在项目视图中看到所有相关文件和文件夹.任何解决这个问题的想法都将受到高度赞赏......
截图:

谢谢你,最好的问候菲利普
我正在尝试创建一个芹菜任务,用于在将图像存储到Amazon S3之前上传和调整图像大小.但它没有按预期工作.没有任务,一切都运转正常.这是到目前为止的代码:
堆栈跟踪
Traceback (most recent call last):
File "../myVE/lib/python2.7/site-packages/kombu/messaging.py", line 579, in _receive_callback
decoded = None if on_m else message.decode()
File "../myVE/lib/python2.7/site-packages/kombu/transport/base.py", line 147, in decode
self.content_encoding, accept=self.accept)
File "../myVE/lib/python2.7/site-packages/kombu/serialization.py", line 187, in decode
return decode(data)
File "../myVE/lib/python2.7/site-packages/kombu/serialization.py", line 74, in pickle_loads
return load(BytesIO(s))
File "../myVE/lib/python2.7/site-packages/werkzeug/datastructures.py", line 2595, in __getattr__
return getattr(self.stream, name)
File "../myVE/lib/python2.7/site-packages/werkzeug/datastructures.py", line 2595, in __getattr__
return getattr(self.stream, name)
...
RuntimeError: maximum recursion depth exceeded while calling a Python object
Run Code Online (Sandbox Code Playgroud)
views.py
from PIL import Image
from …Run Code Online (Sandbox Code Playgroud)