You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2021/01/30 19:49:35 UTC

[airflow] branch v1-10-test updated: Update Mongodb inventory URL to fix docs build (#13939)

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

kaxilnaik pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v1-10-test by this push:
     new 18e889c  Update Mongodb inventory URL to fix docs build (#13939)
18e889c is described below

commit 18e889cc290cd15811e2bc78ce0689cb08465493
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Thu Jan 28 00:09:02 2021 +0000

    Update Mongodb inventory URL to fix docs build (#13939)
    
    Master is failing on docs build because of the following error:
    
    ```
    Failed to fetch inventory: https://api.mongodb.com/python/current/objects.inv
    ```
    
    This is because the URL is changed to https://pymongo.readthedocs.io/en/stable/objects.inv
    
    (cherry picked from commit 7a5aafce08374c75562e3eb728413fefc4ab6e01)
---
 docs/conf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/conf.py b/docs/conf.py
index b72ee3c..82b313c 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -258,7 +258,7 @@ keep_warnings = True
 
 intersphinx_mapping = {
     'boto3': ('https://boto3.amazonaws.com/v1/documentation/api/latest/', None),
-    'mongodb': ('https://api.mongodb.com/python/current/', None),
+    'mongodb': ('https://pymongo.readthedocs.io/en/stable/', None),
     'pandas': ('https://pandas.pydata.org/pandas-docs/stable/', None),
     'python': ('https://docs.python.org/3/', None),
     'requests': ('https://requests.readthedocs.io/en/master/', None),