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/28 00:09:16 UTC

[airflow] branch master 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 master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new 7a5aafc  Update Mongodb inventory URL to fix docs build (#13939)
7a5aafc is described below

commit 7a5aafce08374c75562e3eb728413fefc4ab6e01
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
---
 docs/exts/docs_build/third_party_inventories.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/exts/docs_build/third_party_inventories.py b/docs/exts/docs_build/third_party_inventories.py
index 02defdf..27b461f 100644
--- a/docs/exts/docs_build/third_party_inventories.py
+++ b/docs/exts/docs_build/third_party_inventories.py
@@ -20,7 +20,7 @@ THIRD_PARTY_INDEXES = {
     'celery': 'https://docs.celeryproject.org/en/stable',
     'hdfs': 'https://hdfscli.readthedocs.io/en/latest',
     'jinja2': 'https://jinja.palletsprojects.com/en/master',
-    'mongodb': 'https://api.mongodb.com/python/current',
+    'mongodb': 'https://pymongo.readthedocs.io/en/stable/',
     'pandas': 'https://pandas.pydata.org/pandas-docs/stable',
     'python': 'https://docs.python.org/3',
     'requests': 'https://requests.readthedocs.io/en/master',