mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-28 16:37:24 +02:00
databroker: add encryption for records (#1168)
This commit is contained in:
parent
8cae3f27bb
commit
29fb96a955
8 changed files with 332 additions and 7 deletions
5
cache/cache.go
vendored
5
cache/cache.go
vendored
|
@ -67,7 +67,10 @@ func New(opts config.Options) (*Cache, error) {
|
|||
return nil, err
|
||||
}
|
||||
|
||||
dataBrokerServer := NewDataBrokerServer(localGRPCServer, opts)
|
||||
dataBrokerServer, err := NewDataBrokerServer(localGRPCServer, opts)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
dataBrokerClient := databroker.NewDataBrokerServiceClient(localGRPCConnection)
|
||||
|
||||
manager := manager.New(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue