Skip to content

Commit cb75660

Browse files
committed
fix: prevent unnecessary updates of the documentation page by setting meta to None
1 parent faed163 commit cb75660

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/osw/controller/page_package.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -529,6 +529,9 @@ def create(
529529
pp.version = p.version
530530
pp.url = [bundle.publisherURL]
531531
pp.parts = self.page_titles
532+
# this will prevent the meta from being updated with the change-id
533+
# which would lead to unnecessary updates of the documentation page
534+
pp.meta = None
532535
pp.store_jsonld()
533536

534537
# Create a PagePackageConfig instance

0 commit comments

Comments
 (0)