aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2022-08-26 08:54:28 +0000
committerAleksandr Nogikh <wp32pw@gmail.com>2022-08-26 12:16:31 +0200
commit8ec544d642e798a770a130062fe4ba75d7bbfdd3 (patch)
tree2b031700bc31d6f7a0e212ce845ca6ab8fc512c7 /pkg
parent70596d3428a1360f168e7b2b9001db32edeb05e5 (diff)
pkg/asset: update config documentation
Diffstat (limited to 'pkg')
-rw-r--r--pkg/asset/config.go4
1 files changed, 2 insertions, 2 deletions
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"`
}