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
Traceback (most recent call last):
File "/usr/local/bin/gaffer", line 11, in <module>
sys.exit(main())
File "/usr/local/lib/python3.6/site-packages/gaffer/cli/main.py", line 252, in main
cli.run()
File "/usr/local/lib/python3.6/site-packages/gaffer/cli/main.py", line 193, in run
config = Config(self.args)
File "/usr/local/lib/python3.6/site-packages/gaffer/cli/main.py", line 87, in __init__
api_key=api_key, **self.client_options)
File "/usr/local/lib/python3.6/site-packages/gaffer/httpclient/server.py", line 22, in __init__
super(Server, self).__init__(uri, loop=loop, **options)
File "/usr/local/lib/python3.6/site-packages/gaffer/httpclient/base.py", line 86, in __init__
self.client = HTTPClient(loop=loop)
File "/usr/local/lib/python3.6/site-packages/gaffer/httpclient/base.py", line 42, in __init__
self._io_loop = IOLoop(_loop=loop)
File "/usr/local/lib/python3.6/site-packages/gaffer/tornado_pyuv.py", line 54, in __init__
self._waker = Waker(self._loop)
File "/usr/local/lib/python3.6/site-packages/gaffer/tornado_pyuv.py", line 28, in __init__
self._async.unref()
AttributeError: 'pyuv._cpyuv.Async' object has no attribute 'unref'
Exception ignored in: <bound method HTTPClient.__del__ of <gaffer.httpclient.base.HTTPClient object at 0x7f96746c5b00>>
Traceback (most recent call last):
File "/usr/local/lib/python3.6/site-packages/gaffer/httpclient/base.py", line 50, in __del__
self.close()
File "/usr/local/lib/python3.6/site-packages/gaffer/httpclient/base.py", line 54, in close
if not self._closed:
AttributeError: 'HTTPClient' object has no attribute '_closed'
How to solve this AttributeError: 'HTTPClient' object has no attribute '_closed' error?
The text was updated successfully, but these errors were encountered:
Gaffer version: gaffer version 0.5.2
I have a
Django 2.0
application deployed onVPS
with virtual environment setup usingpipenv
.At present, using this command to run the application from terminal in background.
Now, I want to configure using
Procfile
andgaffer
.I added a file
Procfile
to root of the application directory with commandand trying to load it with
gaffer
but it is giving error as
How to solve this
AttributeError: 'HTTPClient' object has no attribute '_closed'
error?The text was updated successfully, but these errors were encountered: