Skip to content
Merged
Show file tree
Hide file tree
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 server/app/interfaces/discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def to_file(self, filename: str) -> None:


class DiscoveryAPI(BaseWSGIApp):
def __init__(self, persistent_store: DiscoveryStore, base_path: str = "/api/v3.1.1"):
def __init__(self, persistent_store: DiscoveryStore, base_path: str = "/api/v3.1"):
self.persistent_store: DiscoveryStore = persistent_store
self.url_map = werkzeug.routing.Map(
[
Expand Down
2 changes: 1 addition & 1 deletion server/app/interfaces/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


class RegistryAPI(ObjectStoreWSGIApp):
def __init__(self, object_store: model.AbstractObjectStore, base_path: str = "/api/v3.1.1"):
def __init__(self, object_store: model.AbstractObjectStore, base_path: str = "/api/v3.1"):
self.object_store: model.AbstractObjectStore = object_store
self.url_map = werkzeug.routing.Map(
[
Expand Down
2 changes: 1 addition & 1 deletion server/docker/discovery/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ENV NGINX_MAX_UPLOAD=1M
ENV NGINX_WORKER_PROCESSES=1
ENV LISTEN_PORT=80
ENV CLIENT_BODY_BUFFER_SIZE=1M
ENV API_BASE_PATH=/api/v3.1.1/
ENV API_BASE_PATH=/api/v3.1/

# Copy the entrypoint that will generate Nginx additional configs
COPY server/docker/common/entrypoint.sh /entrypoint.sh
Expand Down
2 changes: 1 addition & 1 deletion server/docker/registry/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ENV NGINX_MAX_UPLOAD=1M
ENV NGINX_WORKER_PROCESSES=1
ENV LISTEN_PORT=80
ENV CLIENT_BODY_BUFFER_SIZE=1M
ENV API_BASE_PATH=/api/v3.1.1/
ENV API_BASE_PATH=/api/v3.1/

# Default values for the storage envs
ENV INPUT=/input
Expand Down
2 changes: 1 addition & 1 deletion server/docker/repository/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ENV NGINX_MAX_UPLOAD=1M
ENV NGINX_WORKER_PROCESSES=1
ENV LISTEN_PORT=80
ENV CLIENT_BODY_BUFFER_SIZE=1M
ENV API_BASE_PATH=/api/v3.0/
ENV API_BASE_PATH=/api/v3.1/

# Default values for the storage envs
ENV INPUT=/input
Expand Down
Loading