Skip to content

Commit

Permalink
Merge pull request #1137
Browse files Browse the repository at this point in the history
docs: clarifies Sphinx bareos-extensions parallel_read_safe status
  • Loading branch information
arogge committed Mar 31, 2022
2 parents d1f97ed + baa7c01 commit b3deab7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -73,6 +73,7 @@ and since Bareos version 20 this project adheres to [Semantic Versioning](https:
- rework SD plugin scsicrypto linux sg_io ioctl subsection for cap_sys_rawio [PR #1057]
- improve action Python plugin documentation, by removing File in Fileset example [PR #1079]
- improve Mysql - PostgreSQL howto [PR #1093] fixing [BUG #1429]
- clarifies Sphinx bareos-extension parallel_read_safe status to False [PR #1037]

[PR #1010]: https://github.com/bareos/bareos/pull/1010
[PR #1013]: https://github.com/bareos/bareos/pull/1013
Expand Down
8 changes: 6 additions & 2 deletions docs/manuals/source/_extensions/bareos-ext.py
@@ -1,6 +1,6 @@
# BAREOS - Backup Archiving REcovery Open Sourced
#
# Copyright (C) 2019-2021 Bareos GmbH & Co. KG
# Copyright (C) 2019-2022 Bareos GmbH & Co. KG
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of version three of the GNU Affero General Public
Expand Down Expand Up @@ -708,4 +708,8 @@ def setup(app):
)

# identifies the version of our extension
return {"version": "0.4"}
return {
"version": "0.4",
"parallel_read_safe": False,
"parallel_write_safe": True
}
8 changes: 6 additions & 2 deletions docs/manuals/source/_extensions/limitation.py
@@ -1,6 +1,6 @@
# BAREOS - Backup Archiving REcovery Open Sourced
#
# Copyright (C) 2019-2020 Bareos GmbH & Co. KG
# Copyright (C) 2019-2022 Bareos GmbH & Co. KG
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of version three of the GNU Affero General Public
Expand Down Expand Up @@ -132,4 +132,8 @@ def setup(app):
app.add_directive("limitation", LimitationDirective)

# identifies the version of our extension
return {"version": "0.2"}
return {
"version": "0.2",
"parallel_read_safe": False,
"parallel_write_safe": True
}

0 comments on commit b3deab7

Please sign in to comment.