Skip to content

Commit

Permalink
Merge branch 'master' into fix-current-encryption-dir
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikstranneheim authored Nov 17, 2023
2 parents 5dc8b94 + 67d30fb commit e080bb8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 52.1.5
current_version = 52.1.6
commit = True
tag = True
tag_name = v{new_version}
Expand Down
2 changes: 1 addition & 1 deletion cg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__title__ = "cg"
__version__ = "52.1.5"
__version__ = "52.1.6"
5 changes: 3 additions & 2 deletions cg/meta/backup/pdc.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,9 @@ def backup_flow_cell(
for encrypted_file in files_to_archive:
if not self.dry_run:
self.archive_file_to_pdc(file_path=encrypted_file.as_posix())
store.update_flow_cell_has_backup(flow_cell=db_flow_cell, has_backup=True)
LOG.info(f"Flow cell: {db_flow_cell.name} has been backed up")
if not self.dry_run:
store.update_flow_cell_has_backup(flow_cell=db_flow_cell, has_backup=True)
LOG.info(f"Flow cell: {db_flow_cell.name} has been backed up")

def start_flow_cell_backup(
self,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "cg"
version = "52.1.5"
version = "52.1.6"
description = "Clinical Genomics command center"
authors = ["Clinical Genomics <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit e080bb8

Please sign in to comment.