Skip to content

Commit

Permalink
Merge pull request #1339 from mattdurham/fix_unassigned_config
Browse files Browse the repository at this point in the history
add sites to iss config constructor
  • Loading branch information
jkroepke authored Nov 16, 2023
2 parents 1836cd1 + 089acc5 commit ab05f43
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkg/collector/iis/iis.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,10 @@ func New(logger log.Logger, config *Config) types.Collector {
}

c := &collector{
appInclude: &config.AppInclude,
appExclude: &config.AppExclude,
appInclude: &config.AppInclude,
appExclude: &config.AppExclude,
siteInclude: &config.SiteInclude,
siteExclude: &config.SiteExclude,
}
c.SetLogger(logger)
return c
Expand Down

0 comments on commit ab05f43

Please sign in to comment.