Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

when creating asset bigchaindb gives error connection erro Remote end closed connection without response #2720

Open
amiranviam opened this issue Jan 18, 2021 · 0 comments

Comments

@amiranviam
Copy link

[2021-01-18 12:19:11] [INFO] (abci.app) ABCIServer started on port: 26658 (MainProcess - pid: 360)
[2021-01-18 12:20:00,650] ERROR in app: Exception on /api/v1/transactions [POST]
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 665, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 421, in _make_request
six.raise_from(e, None)
File "", line 3, in raise_from
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 416, in _make_request
httplib_response = conn.getresponse()
File "/usr/lib/python3.8/http/client.py", line 1347, in getresponse
response.begin()
File "/usr/lib/python3.8/http/client.py", line 307, in begin
version, status, reason = self._read_status()
File "/usr/lib/python3.8/http/client.py", line 276, in _read_status
raise RemoteDisconnected("Remote end closed connection without"
http.client.RemoteDisconnected: Remote end closed connection without response

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/requests/adapters.py", line 439, in send
resp = conn.urlopen(
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 719, in urlopen
retries = retries.increment(
File "/usr/lib/python3/dist-packages/urllib3/util/retry.py", line 400, in increment
raise six.reraise(type(error), error, _stacktrace)
File "/usr/lib/python3/dist-packages/six.py", line 702, in reraise
raise value.with_traceback(tb)
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 665, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 421, in _make_request
six.raise_from(e, None)
File "", line 3, in raise_from
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 416, in _make_request
httplib_response = conn.getresponse()
File "/usr/lib/python3.8/http/client.py", line 1347, in getresponse
response.begin()
File "/usr/lib/python3.8/http/client.py", line 307, in begin
version, status, reason = self._read_status()
File "/usr/lib/python3.8/http/client.py", line 276, in _read_status
raise RemoteDisconnected("Remote end closed connection without"
urllib3.exceptions.ProtocolError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/flask/app.py", line 1950, in full_dispatch_request
rv = self.dispatch_request()
File "/usr/local/lib/python3.8/dist-packages/flask/app.py", line 1936, in dispatch_request
return self.view_functionsrule.endpoint
File "/usr/local/lib/python3.8/dist-packages/flask_restful/init.py", line 468, in wrapper
resp = resource(*args, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/flask/views.py", line 89, in view
return self.dispatch_request(*args, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/flask_restful/init.py", line 583, in dispatch_request
resp = meth(*args, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/bigchaindb/web/views/transactions.py", line 101, in post
status_code, message = bigchain.write_transaction(tx_obj, mode)
File "/usr/local/lib/python3.8/dist-packages/bigchaindb/lib.py", line 100, in write_transaction
response = self.post_transaction(transaction, mode)
File "/usr/local/lib/python3.8/dist-packages/bigchaindb/lib.py", line 95, in post_transaction
return requests.post(self.endpoint, json=payload)
File "/usr/local/lib/python3.8/dist-packages/requests/api.py", line 119, in post
return request('post', url, data=data, json=json, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/requests/api.py", line 61, in request
return session.request(method=method, url=url, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/requests/sessions.py", line 530, in request
resp = self.send(prep, **send_kwargs)
File "/usr/local/lib/python3.8/dist-packages/requests/sessions.py", line 643, in send
r = adapter.send(request, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/requests/adapters.py", line 498, in send
raise ConnectionError(err, request=request)
requests.exceptions.ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))
[2021-01-18 12:20:00] [ERROR] (bigchaindb.web.server) Exception on /api/v1/transactions [POST] (bigchaindb_webapi - pid: 373)
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 665, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 421, in _make_request
six.raise_from(e, None)
File "", line 3, in raise_from
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 416, in _make_request
httplib_response = conn.getresponse()
File "/usr/lib/python3.8/http/client.py", line 1347, in getresponse
response.begin()
File "/usr/lib/python3.8/http/client.py", line 307, in begin
version, status, reason = self._read_status()
File "/usr/lib/python3.8/http/client.py", line 276, in _read_status
raise RemoteDisconnected("Remote end closed connection without"
http.client.RemoteDisconnected: Remote end closed connection without response

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/requests/adapters.py", line 439, in send
resp = conn.urlopen(
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 719, in urlopen
retries = retries.increment(
File "/usr/lib/python3/dist-packages/urllib3/util/retry.py", line 400, in increment
raise six.reraise(type(error), error, _stacktrace)
File "/usr/lib/python3/dist-packages/six.py", line 702, in reraise
raise value.with_traceback(tb)
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 665, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 421, in _make_request
six.raise_from(e, None)
File "", line 3, in raise_from
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 416, in _make_request
httplib_response = conn.getresponse()
File "/usr/lib/python3.8/http/client.py", line 1347, in getresponse
response.begin()
File "/usr/lib/python3.8/http/client.py", line 307, in begin
version, status, reason = self._read_status()
File "/usr/lib/python3.8/http/client.py", line 276, in _read_status
raise RemoteDisconnected("Remote end closed connection without"
urllib3.exceptions.ProtocolError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/flask/app.py", line 1950, in full_dispatch_request
rv = self.dispatch_request()
File "/usr/local/lib/python3.8/dist-packages/flask/app.py", line 1936, in dispatch_request
return self.view_functionsrule.endpoint
File "/usr/local/lib/python3.8/dist-packages/flask_restful/init.py", line 468, in wrapper
resp = resource(*args, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/flask/views.py", line 89, in view
return self.dispatch_request(*args, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/flask_restful/init.py", line 583, in dispatch_request
resp = meth(*args, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/bigchaindb/web/views/transactions.py", line 101, in post
status_code, message = bigchain.write_transaction(tx_obj, mode)
File "/usr/local/lib/python3.8/dist-packages/bigchaindb/lib.py", line 100, in write_transaction
response = self.post_transaction(transaction, mode)
File "/usr/local/lib/python3.8/dist-packages/bigchaindb/lib.py", line 95, in post_transaction
return requests.post(self.endpoint, json=payload)
File "/usr/local/lib/python3.8/dist-packages/requests/api.py", line 119, in post
return request('post', url, data=data, json=json, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/requests/api.py", line 61, in request
return session.request(method=method, url=url, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/requests/sessions.py", line 530, in request
resp = self.send(prep, **send_kwargs)
File "/usr/local/lib/python3.8/dist-packages/requests/sessions.py", line 643, in send
r = adapter.send(request, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/requests/adapters.py", line 498, in send
raise ConnectionError(err, request=request)
requests.exceptions.ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))
^CProcess bigchaindb_exchange:
[2021-01-18 12:20:29 +0530] [370] [INFO] Handling signal: int
Traceback (most recent call last):
File "/usr/lib/python3.8/multiprocessing/process.py", line 315, in _bootstrap
self.run()
File "/usr/local/lib/python3.8/dist-packages/bigchaindb/utils.py", line 49, in run
super().run()
File "/usr/lib/python3.8/multiprocessing/process.py", line 108, in run
self._target(*self._args, **self._kwargs)
File "/usr/local/lib/python3.8/dist-packages/bigchaindb/events.py", line 105, in run
event = self.publisher_queue.get()
File "/usr/lib/python3.8/multiprocessing/queues.py", line 97, in get
res = self._recv_bytes()
File "/usr/lib/python3.8/multiprocessing/connection.py", line 216, in recv_bytes
buf = self._recv_bytes(maxlength)
File "/usr/lib/python3.8/multiprocessing/connection.py", line 414, in _recv_bytes
buf = self._recv(4)
File "/usr/lib/python3.8/multiprocessing/connection.py", line 379, in _recv
chunk = read(handle, remaining)
KeyboardInterrupt
Segmentation fault
aamir@DESKTOP-UIIMJ82:/bigchaindb$ [2021-01-18 12:20:29 +0530] [375] [INFO] Worker exiting (pid: 375)
[2021-01-18 12:20:29 +0530] [376] [INFO] Worker exiting (pid: 376)
[2021-01-18 12:20:29 +0530] [374] [INFO] Worker exiting (pid: 374)
[2021-01-18 12:20:29 +0530] [371] [INFO] Worker exiting (pid: 371)
[2021-01-18 12:20:29 +0530] [379] [INFO] Worker exiting (pid: 379)
[2021-01-18 12:20:29 +0530] [377] [INFO] Worker exiting (pid: 377)
[2021-01-18 12:20:29 +0530] [378] [INFO] Worker exiting (pid: 378)
[2021-01-18 12:20:29 +0530] [372] [INFO] Worker exiting (pid: 372)
[2021-01-18 12:20:29 +0530] [373] [INFO] Worker exiting (pid: 373)
[2021-01-18 12:20:29 +0530] [370] [INFO] Shutting down: Master
^C
aamir@DESKTOP-UIIMJ82:
/bigchaindb$ sudo bigchaindb start
INFO:bigchaindb.config_utils:Configuration loaded from /root/.bigchaindb
[2021-01-18 12:20:31] [INFO] (bigchaindb.commands.bigchaindb) BigchainDB Version 2.2.2 (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.commands.bigchaindb) Initializing database (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Create database bigchain. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Create transactions table. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Collection transactions already exists. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Ensure secondary indexes for transactions. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Create blocks table. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Collection blocks already exists. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Ensure secondary indexes for blocks. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Create assets table. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Collection assets already exists. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Ensure secondary indexes for assets. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Create metadata table. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Collection metadata already exists. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Ensure secondary indexes for metadata. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Create validators table. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Collection validators already exists. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Ensure secondary indexes for validators. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Create elections table. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Collection elections already exists. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Ensure secondary indexes for elections. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Create pre_commit table. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Collection pre_commit already exists. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Ensure secondary indexes for pre_commit. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Create utxos table. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Collection utxos already exists. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Ensure secondary indexes for utxos. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Create abci_chains table. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Collection abci_chains already exists. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.backend.localmongodb.schema) Ensure secondary indexes for abci_chains. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.commands.bigchaindb) Starting BigchainDB main process. (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.start) Starting BigchainDB (MainProcess - pid: 394)
[2021-01-18 12:20:31] [INFO] (bigchaindb.start)


  •                                                                      *
    
  •                         BigchainDB 2.2.2                             *
    
  • codename "jumping sloth" *
  • Initialization complete. BigchainDB Server is ready and waiting. *
  •                                                                      *
    
  • You can send HTTP requests via the HTTP API documented in the *
  • BigchainDB Server docs at: *
  • https://bigchaindb.com/http-api *
  •                                                                      *
    
  • Listening to client connections on: localhost:9984 *
  •                                                                      *
    

(MainProcess - pid: 394)
[2021-01-18 12:20:31 +0530] [404] [INFO] Starting gunicorn 20.0.4
[2021-01-18 12:20:31 +0530] [404] [INFO] Listening at: http://127.0.0.1:9984 (404)
[2021-01-18 12:20:31 +0530] [404] [INFO] Using worker: sync
[2021-01-18 12:20:31 +0530] [405] [INFO] Booting worker with pid: 405
[2021-01-18 12:20:31 +0530] [406] [INFO] Booting worker with pid: 406
[2021-01-18 12:20:31 +0530] [407] [INFO] Booting worker with pid: 407
[2021-01-18 12:20:32 +0530] [408] [INFO] Booting worker with pid: 408
[2021-01-18 12:20:32 +0530] [409] [INFO] Booting worker with pid: 409
[2021-01-18 12:20:32 +0530] [410] [INFO] Booting worker with pid: 410
[2021-01-18 12:20:32 +0530] [411] [INFO] Booting worker with pid: 411
[2021-01-18 12:20:32 +0530] [412] [INFO] Booting worker with pid: 412
[2021-01-18 12:20:32 +0530] [413] [INFO] Booting worker with pid: 413
======== Running on http://localhost:9985 ========
(Press CTRL+C to quit)
:219: RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject
:219: RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject
:219: RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject
:219: RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject
:219: RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject
:219: RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject
[2021-01-18 12:20:33] [INFO] (abci.app) ABCIServer started on port: 26658 (MainProcess - pid: 394)
[2021-01-18 13:01:59 +0530] [404] [INFO] Handling signal: winch
[2021-01-18 13:01:59 +0530] [404] [INFO] Handling signal: winch
[2021-01-18 13:06:15,764] ERROR in app: Exception on /api/v1/transactions [POST]
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 665, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 421, in _make_request
six.raise_from(e, None)
File "", line 3, in raise_from
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 416, in _make_request
httplib_response = conn.getresponse()
File "/usr/lib/python3.8/http/client.py", line 1347, in getresponse
response.begin()
File "/usr/lib/python3.8/http/client.py", line 307, in begin
version, status, reason = self._read_status()
File "/usr/lib/python3.8/http/client.py", line 276, in _read_status
raise RemoteDisconnected("Remote end closed connection without"
http.client.RemoteDisconnected: Remote end closed connection without response

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/requests/adapters.py", line 439, in send
resp = conn.urlopen(
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 719, in urlopen
retries = retries.increment(
File "/usr/lib/python3/dist-packages/urllib3/util/retry.py", line 400, in increment
raise six.reraise(type(error), error, _stacktrace)
File "/usr/lib/python3/dist-packages/six.py", line 702, in reraise
raise value.with_traceback(tb)
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 665, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 421, in _make_request
six.raise_from(e, None)
File "", line 3, in raise_from
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 416, in _make_request
httplib_response = conn.getresponse()
File "/usr/lib/python3.8/http/client.py", line 1347, in getresponse
response.begin()
File "/usr/lib/python3.8/http/client.py", line 307, in begin
version, status, reason = self._read_status()
File "/usr/lib/python3.8/http/client.py", line 276, in _read_status
raise RemoteDisconnected("Remote end closed connection without"
urllib3.exceptions.ProtocolError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/flask/app.py", line 1950, in full_dispatch_request
rv = self.dispatch_request()
File "/usr/local/lib/python3.8/dist-packages/flask/app.py", line 1936, in dispatch_request
return self.view_functionsrule.endpoint
File "/usr/local/lib/python3.8/dist-packages/flask_restful/init.py", line 468, in wrapper
resp = resource(*args, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/flask/views.py", line 89, in view
return self.dispatch_request(*args, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/flask_restful/init.py", line 583, in dispatch_request
resp = meth(*args, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/bigchaindb/web/views/transactions.py", line 101, in post
status_code, message = bigchain.write_transaction(tx_obj, mode)
File "/usr/local/lib/python3.8/dist-packages/bigchaindb/lib.py", line 100, in write_transaction
response = self.post_transaction(transaction, mode)
File "/usr/local/lib/python3.8/dist-packages/bigchaindb/lib.py", line 95, in post_transaction
return requests.post(self.endpoint, json=payload)
File "/usr/local/lib/python3.8/dist-packages/requests/api.py", line 119, in post
return request('post', url, data=data, json=json, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/requests/api.py", line 61, in request
return session.request(method=method, url=url, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/requests/sessions.py", line 530, in request
resp = self.send(prep, **send_kwargs)
File "/usr/local/lib/python3.8/dist-packages/requests/sessions.py", line 643, in send
r = adapter.send(request, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/requests/adapters.py", line 498, in send
raise ConnectionError(err, request=request)
requests.exceptions.ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))
[2021-01-18 13:06:15] [ERROR] (bigchaindb.web.server) Exception on /api/v1/transactions [POST] (bigchaindb_webapi - pid: 406)
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 665, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 421, in _make_request
six.raise_from(e, None)
File "", line 3, in raise_from
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 416, in _make_request
httplib_response = conn.getresponse()
File "/usr/lib/python3.8/http/client.py", line 1347, in getresponse
response.begin()
File "/usr/lib/python3.8/http/client.py", line 307, in begin
version, status, reason = self._read_status()
File "/usr/lib/python3.8/http/client.py", line 276, in _read_status
raise RemoteDisconnected("Remote end closed connection without"
http.client.RemoteDisconnected: Remote end closed connection without response

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/requests/adapters.py", line 439, in send
resp = conn.urlopen(
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 719, in urlopen
retries = retries.increment(
File "/usr/lib/python3/dist-packages/urllib3/util/retry.py", line 400, in increment
raise six.reraise(type(error), error, _stacktrace)
File "/usr/lib/python3/dist-packages/six.py", line 702, in reraise
raise value.with_traceback(tb)
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 665, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 421, in _make_request
six.raise_from(e, None)
File "", line 3, in raise_from
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 416, in _make_request
httplib_response = conn.getresponse()
File "/usr/lib/python3.8/http/client.py", line 1347, in getresponse
response.begin()
File "/usr/lib/python3.8/http/client.py", line 307, in begin
version, status, reason = self._read_status()
File "/usr/lib/python3.8/http/client.py", line 276, in _read_status
raise RemoteDisconnected("Remote end closed connection without"
urllib3.exceptions.ProtocolError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/flask/app.py", line 1950, in full_dispatch_request
rv = self.dispatch_request()
File "/usr/local/lib/python3.8/dist-packages/flask/app.py", line 1936, in dispatch_request
return self.view_functionsrule.endpoint
File "/usr/local/lib/python3.8/dist-packages/flask_restful/init.py", line 468, in wrapper
resp = resource(*args, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/flask/views.py", line 89, in view
return self.dispatch_request(*args, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/flask_restful/init.py", line 583, in dispatch_request
resp = meth(*args, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/bigchaindb/web/views/transactions.py", line 101, in post
status_code, message = bigchain.write_transaction(tx_obj, mode)
File "/usr/local/lib/python3.8/dist-packages/bigchaindb/lib.py", line 100, in write_transaction
response = self.post_transaction(transaction, mode)
File "/usr/local/lib/python3.8/dist-packages/bigchaindb/lib.py", line 95, in post_transaction
return requests.post(self.endpoint, json=payload)
File "/usr/local/lib/python3.8/dist-packages/requests/api.py", line 119, in post
return request('post', url, data=data, json=json, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/requests/api.py", line 61, in request
return session.request(method=method, url=url, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/requests/sessions.py", line 530, in request
resp = self.send(prep, **send_kwargs)
File "/usr/local/lib/python3.8/dist-packages/requests/sessions.py", line 643, in send
r = adapter.send(request, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/requests/adapters.py", line 498, in send
raise ConnectionError(err, request=request)
requests.exceptions.ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant