From d1bfa5f4b08fa12a59a78478387bb2133c3442f1 Mon Sep 17 00:00:00 2001
From: Antoine Lambert <anlambert@softwareheritage.org>
Date: Fri, 17 Nov 2023 10:49:03 +0100
Subject: [PATCH] sphinx/view_in_gitlab: Mark extension safe for parallel
 reading

It should fix doc CI builds as parallel build was recently enabled in jobs.
---
 swh/docs/sphinx/view_in_gitlab.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/swh/docs/sphinx/view_in_gitlab.py b/swh/docs/sphinx/view_in_gitlab.py
index e2c12693..8d4bdb13 100644
--- a/swh/docs/sphinx/view_in_gitlab.py
+++ b/swh/docs/sphinx/view_in_gitlab.py
@@ -32,3 +32,4 @@ def html_page_context(app, pagename, templatename, context, doctree):
 
 def setup(app):
     app.connect("html-page-context", html_page_context)
+    return {"parallel_read_safe": True}
-- 
GitLab