Open cxl4444 opened 2 years ago
Thanks for posting! I am able to run the update script without any problems. Given it was a timeout error, I wonder if the MAST servers happened to be down when you ran it and you got unlucky in your timing? Can you delete (if it exists) your ~/.eleanor/metadata/s00NN
directory, where s00NN
is the sector you were trying to update, and try again and see if it works now?
Hi, when I used the module eleanor.Update(), the connection to https://archive.stsci.edu/missions/tess/ffi/ was filed, and following is the output when I use urllib.request.urlopen() to visit above page.
TimeoutError Traceback (most recent call last) /opt/anaconda3/lib/python3.7/urllib/request.py in do_open(self, http_class, req, **http_conn_args) 1318 h.request(req.get_method(), req.selector, req.data, headers, -> 1319 encode_chunked=req.has_header('Transfer-encoding')) 1320 except OSError as err: # timeout error
/opt/anaconda3/lib/python3.7/http/client.py in request(self, method, url, body, headers, encode_chunked) 1251 """Send a complete request to the server.""" -> 1252 self._send_request(method, url, body, headers, encode_chunked) 1253
/opt/anaconda3/lib/python3.7/http/client.py in _send_request(self, method, url, body, headers, encode_chunked) 1297 body = _encode(body, 'body') -> 1298 self.endheaders(body, encode_chunked=encode_chunked) 1299
/opt/anaconda3/lib/python3.7/http/client.py in endheaders(self, message_body, encode_chunked) 1246 raise CannotSendHeader() -> 1247 self._send_output(message_body, encode_chunked=encode_chunked) 1248
/opt/anaconda3/lib/python3.7/http/client.py in _send_output(self, message_body, encode_chunked) 1025 del self._buffer[:] -> 1026 self.send(msg) 1027
/opt/anaconda3/lib/python3.7/http/client.py in send(self, data) 965 if self.auto_open: --> 966 self.connect() 967 else:
/opt/anaconda3/lib/python3.7/http/client.py in connect(self) 1413 -> 1414 super().connect() 1415
/opt/anaconda3/lib/python3.7/http/client.py in connect(self) 937 self.sock = self._create_connection( --> 938 (self.host,self.port), self.timeout, self.source_address) 939 self.sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
/opt/anaconda3/lib/python3.7/socket.py in create_connection(address, timeout, source_address) 727 try: --> 728 raise err 729 finally:
/opt/anaconda3/lib/python3.7/socket.py in create_connection(address, timeout, source_address) 715 sock.bind(source_address) --> 716 sock.connect(sa) 717 # Break explicitly a reference cycle
TimeoutError: [Errno 110] Connection timed out
During handling of the above exception, another exception occurred:
URLError Traceback (most recent call last)