Skip to content

Commit

Permalink
Fix bad rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
soapy1 committed Jan 1, 2025
1 parent f1e49be commit 4bd2b75
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions conda-store-server/conda_store_server/conda_store_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,6 @@ class CondaStore(LoggingConfigurable):
schema.BuildArtifactType.LOGS,
schema.BuildArtifactType.LOCKFILE,
schema.BuildArtifactType.YAML,
# no possible way to delete these artifacts
# in most container registries via api
schema.BuildArtifactType.CONTAINER_REGISTRY,
],
help="artifacts to keep on build deletion",
config=True,
Expand Down Expand Up @@ -129,12 +126,7 @@ def _default_celery_results_backend(self):
return f"db+{self.database_url}"


container_registry_class = Type(
default_value=registry.ContainerRegistry,
klass=registry.ContainerRegistry,
allow_none=False,
config=True,
)
container_registry_class = Type(allow_none=True, help="(deprecated)")

conda_command = Unicode(
"mamba",
Expand Down

0 comments on commit 4bd2b75

Please sign in to comment.