Skip to content

Commit

Permalink
Adding a tip to resolve ETIMEDOUT error (apache#36810)
Browse files Browse the repository at this point in the history
  • Loading branch information
amoghrajesh authored Jan 16, 2024
1 parent 57c9211 commit a22ad47
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion BREEZE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ describe your problem.
ETIMEOUT Error
--------------

When running ``breeze start-airflow``, the following output might be observed:
When running ``breeze start-airflow``, either normally or in ``dev-mode``, the following output might be observed:

.. code-block:: bash
Expand Down Expand Up @@ -963,6 +963,20 @@ In this case, disabling IPv6 in the host machine and using IPv4 instead resolved
The similar issue could happen if you are behind an HTTP/HTTPS proxy and your access to required websites are
blocked by it, or your proxy setting has not been done properly.
It also could be possible that you have a proxy which is not available from your network, leading to the timeout
issues. You may try these in the same terminal and then try the ``breeze start-airflow`` command:
.. code-block::
npm config delete http-proxy
npm config delete https-proxy
npm config rm proxy
npm config rm https-proxy
set HTTP_PROXY=null
set HTTPS_PROXY=null
Advanced commands
=================
Expand Down

0 comments on commit a22ad47

Please sign in to comment.