chore: fix typo in config descriptions (#5585)

This commit is contained in:
Bowen Liang
2024-06-25 21:19:56 +08:00
committed by GitHub
parent 45a3ea6fed
commit 87ee3e627f
8 changed files with 13 additions and 13 deletions

View File

@@ -9,31 +9,31 @@ class AliyunOSSStorageConfig(BaseModel):
"""
ALIYUN_OSS_BUCKET_NAME: Optional[str] = Field(
description='Aliyun storage ',
description='Aliyun OSS bucket name',
default=None,
)
ALIYUN_OSS_ACCESS_KEY: Optional[str] = Field(
description='Aliyun storage access key',
description='Aliyun OSS access key',
default=None,
)
ALIYUN_OSS_SECRET_KEY: Optional[str] = Field(
description='Aliyun storage secret key',
description='Aliyun OSS secret key',
default=None,
)
ALIYUN_OSS_ENDPOINT: Optional[str] = Field(
description='Aliyun storage endpoint URL',
description='Aliyun OSS endpoint URL',
default=None,
)
ALIYUN_OSS_REGION: Optional[str] = Field(
description='Aliyun storage region',
description='Aliyun OSS region',
default=None,
)
ALIYUN_OSS_AUTH_VERSION: Optional[str] = Field(
description='Aliyun storage authentication version',
description='Aliyun OSS authentication version',
default=None,
)

View File

@@ -24,6 +24,6 @@ class AzureBlobStorageConfig(BaseModel):
)
AZURE_BLOB_ACCOUNT_URL: Optional[str] = Field(
description='Azure Blob account url',
description='Azure Blob account URL',
default=None,
)