Skip to content

Commit 472e2a7

Browse files
committed
dashboard/app: fix comment reference to ExternalConfig struct
Commit b190f06 ("dashboard/app: fix testing for go1.11 runtime") removed the unused ExternalConfig struct. However, config.go still refers to ExternalConfig in a comment explaining how it can be used to attach to external reporting systems. Change this to say the user can implement their own type if they need. Signed-off-by: Andrew Donnellan <ajd@linux.ibm.com>
1 parent fc20f97 commit 472e2a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dashboard/app/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ type Reporting struct {
301301
Embargo time.Duration
302302
// Type of reporting and its configuration.
303303
// The app has one built-in type, EmailConfig, which reports bugs by email.
304-
// And ExternalConfig which can be used to attach any external reporting system (e.g. Bugzilla).
304+
// The user can implement other types to attach to external reporting systems (e.g. Bugzilla).
305305
Config ReportingType
306306
// List of labels to notify about (keys are strings of form "label:value").
307307
// The value is the string that will be included in the notification message.

0 commit comments

Comments
 (0)