From bd0b8e9f5486207bc9fc227a41d2bfd1787beb45 Mon Sep 17 00:00:00 2001 From: John Chilton Date: Fri, 17 May 2024 13:06:18 -0400 Subject: [PATCH] Fix for boto3 user defined object stores. --- lib/galaxy/objectstore/templates/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/galaxy/objectstore/templates/models.py b/lib/galaxy/objectstore/templates/models.py index 2550cef64832..dcbabb760434 100644 --- a/lib/galaxy/objectstore/templates/models.py +++ b/lib/galaxy/objectstore/templates/models.py @@ -212,7 +212,7 @@ class Boto3Transfer(StrictModel): class Boto3ObjectStoreConfiguration(StrictModel): - type: Literal["disk"] + type: Literal["boto3"] auth: S3Auth bucket: Boto3Bucket connection: Optional[Boto3Connection] = None