Skip to content

Commit

Permalink
add sites to iss config constructor
Browse files Browse the repository at this point in the history
Signed-off-by: matt durham <[email protected]>
  • Loading branch information
mattdurham committed Nov 16, 2023
1 parent 1836cd1 commit 089acc5
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 089acc5

Please sign in to comment.