Initial test environment implementation

This commit is contained in:
Joe Kralicky 2024-08-22 17:15:20 -04:00
parent dc427a4078
commit f1d2799a9f
No known key found for this signature in database
GPG key ID: 75C4875F34A9FB79
24 changed files with 2917 additions and 20 deletions

View file

@ -74,11 +74,12 @@ func NewServer(
cfg *config.Config,
metricsMgr *config.MetricsManager,
eventsMgr *events.Manager,
fileMgr *filemgr.Manager,
) (*Server, error) {
srv := &Server{
metricsMgr: metricsMgr,
EventsMgr: eventsMgr,
filemgr: filemgr.NewManager(),
filemgr: fileMgr,
reproxy: reproxy.New(),
haveSetCapacity: map[string]bool{},
updateConfig: make(chan *config.Config, 1),