Skip to content

Commit d683bdb

Browse files
Fix default branches in conf.py (#1231)
* Refs #23874 . Change Fast DDS Python branch to '2.2.x' Signed-off-by: Miguel Company <miguelcompany@eprosima.com> * Refs #23874 . Change Fast DDS branch to '3.2.x' Signed-off-by: Miguel Company <miguelcompany@eprosima.com> --------- Signed-off-by: Miguel Company <miguelcompany@eprosima.com>
1 parent b177e87 commit d683bdb

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ def configure_doxyfile(
323323

324324
# First try to checkout to ${FASTDDS_BRANCH}
325325
# Else try with current documentation branch
326-
# Else checkout to master
326+
# Else checkout to 3.2.x
327327
if fastdds_branch and fastdds.refs.__contains__("origin/{}".format(fastdds_branch)):
328328
fastdds_branch = "origin/{}".format(fastdds_branch)
329329
elif docs_branch and fastdds.refs.__contains__("origin/{}".format(docs_branch)):
@@ -334,7 +334,7 @@ def configure_doxyfile(
334334
fastdds_branch, docs_branch
335335
)
336336
)
337-
fastdds_branch = "origin/master"
337+
fastdds_branch = "origin/3.2.x"
338338

339339
# Actual checkout
340340
print('Checking out Fast DDS branch "{}"'.format(fastdds_branch))
@@ -352,7 +352,7 @@ def configure_doxyfile(
352352

353353
# First try to checkout to ${FASTDDS_PYTHON_BRANCH}
354354
# Else try with current documentation branch
355-
# Else checkout to master
355+
# Else checkout to 2.2.x
356356
if fastdds_python_branch and fastdds_python.refs.__contains__(
357357
"origin/{}".format(fastdds_python_branch)
358358
):
@@ -367,7 +367,7 @@ def configure_doxyfile(
367367
fastdds_python_branch, docs_branch
368368
)
369369
)
370-
fastdds_python_branch = "origin/main"
370+
fastdds_python_branch = "origin/2.2.x"
371371

372372
# Actual checkout
373373
print('Checking out Fast DDS Python branch "{}"'.format(fastdds_python_branch))

0 commit comments

Comments
 (0)