Skip to content
This repository has been archived by the owner on Sep 12, 2018. It is now read-only.

set validate=False when calling boto get_bucket #1003

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion depends/docker-registry-core/docker_registry/core/boto.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def __init__(self, path=None, config=None):
self._root_path = path or '/test'
self._boto_conn = self.makeConnection()
self._boto_bucket = self._boto_conn.get_bucket(
self._config.boto_bucket)
self._config.boto_bucket, validate=False)
logger.info("Boto based storage initialized")

def _build_connection_params(self):
Expand Down