From 8ec544d642e798a770a130062fe4ba75d7bbfdd3 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Fri, 26 Aug 2022 08:54:28 +0000 Subject: pkg/asset: update config documentation --- pkg/asset/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkg') diff --git a/pkg/asset/config.go b/pkg/asset/config.go index ea6013df1..58e15eded 100644 --- a/pkg/asset/config.go +++ b/pkg/asset/config.go @@ -16,7 +16,7 @@ type Config struct { Debug bool `json:"debug"` // Where to upload artifacts. // If "gs://bucket/" is specified, assets will be stored in the corresponding GCS bucket. - // If "dummpy://" is specified, assets will not be actually stored anywhere. May be helpful + // If "dummy://" is specified, assets will not be actually stored anywhere. May be helpful // for debugging. UploadTo string `json:"upload_to"` // Perform asset deprecation from this instance. If several syz-ci's share a common stoage, @@ -25,7 +25,7 @@ type Config struct { // Make assets publicly available (note that it also might require special configuration // on the storage backend's side). PublicAccess bool `json:"public_access"` - // Which assets need to be uploaded. + // Some asset type-specific configurations. By default all asset types are enabled. Assets map[dashapi.AssetType]TypeConfig `json:"assets"` } -- cgit mrf-deployment