blob: 7d1c0f77b30dbc94e19432a4563255749eebf3cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Fix Failing MR Failing Tests
## Tags
* priority: high
* status: closed
* assigned: bonfacem
## Description
MR fails because of a python-flask/requests issue. Everytime you issue a GET request to the server you get an empty response. Here's an example using curl:
```
curl "http://localhost:5007/search?species=mouse&group=BXD&type=Hippocampus+mRNA&dataset=HC_M2_0606_P&search_terms_or=MEAN%3D%2815+16%29+LRS%3D%2823+46%29&search_terms_and=&FormID=searchResult"
```
And an example response:
```
curl: (52) Empty reply from server
```
Within the requests library, you get the following error:
```
raise ConnectionError(err, request=request)
requests.exceptions.ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))
```
|