databroker: remove unused serverConfig fields (#5314)

The databroker.serverConfig struct has a few fields which are written
to but never read.
This commit is contained in:
Kenneth Jenkins 2024-10-04 12:04:59 -07:00 committed by GitHub
parent 410354bc00
commit 6f6186a67d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 42 deletions

View file

@ -57,7 +57,6 @@ func (srv *dataBrokerServer) getOptions(cfg *config.Config) ([]databroker.Server
}
return []databroker.ServerOption{
databroker.WithGetSharedKey(cfg.Options.GetSharedKey),
databroker.WithStorageType(cfg.Options.DataBrokerStorageType),
databroker.WithStorageConnectionString(dataBrokerStorageConnectionString),
}, nil