Skip to content

Commit

Permalink
Merge pull request #3752 from opsmill/fac-fix-backup-restore
Browse files Browse the repository at this point in the history
fix(utilities): update requests lib to fix docker issue
  • Loading branch information
fatih-acar authored Jul 8, 2024
2 parents aabf0b2 + 2fb3f7e commit 48e16d0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
19 changes: 10 additions & 9 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion utilities/db_backup/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def __init__(
self.keep_helper_container = keep_helper_container
self.docker_client = docker.from_env()
self.use_host_network = use_host_network
self.neo4j_docker_image = os.getenv("NEO4J_BACKUP_DOCKER_IMAGE", "neo4j/neo4j-admin:5.18.1-enterprise")
self.neo4j_docker_image = os.getenv("NEO4J_BACKUP_DOCKER_IMAGE", "neo4j:5.20.0-enterprise")

def _print_message(self, message: str, force_print: bool = False, with_timestamp: bool = True) -> None:
if self.be_quiet and not force_print:
Expand Down

0 comments on commit 48e16d0

Please sign in to comment.