This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new a22ad47eff Adding a tip to resolve ETIMEDOUT error (#36810)
a22ad47eff is described below

commit a22ad47effd6df5b460dac9912aa98009caa44f5
Author: Amogh Desai <amoghrajesh1...@gmail.com>
AuthorDate: Tue Jan 16 21:39:34 2024 +0530

    Adding a tip to resolve ETIMEDOUT error (#36810)
---
 BREEZE.rst | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/BREEZE.rst b/BREEZE.rst
index 6311463765..28c43cbedb 100644
--- a/BREEZE.rst
+++ b/BREEZE.rst
@@ -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
 
@@ -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
 =================
 

Reply via email to