mirror of
https://github.com/openziti/zrok.git
synced 2024-11-22 16:13:47 +01:00
20 lines
509 B
Go
Executable File
20 lines
509 B
Go
Executable File
package agent
|
|
|
|
import (
|
|
"context"
|
|
"github.com/openziti/zrok/agent/agentGrpc"
|
|
"github.com/pkg/errors"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func (i *agentGrpcImpl) ReleaseShare(_ context.Context, req *agentGrpc.ReleaseShareRequest) (*agentGrpc.ReleaseShareResponse, error) {
|
|
if shr, found := i.agent.shares[req.Token]; found {
|
|
i.agent.rmShare <- shr
|
|
logrus.Infof("released share '%v'", shr.token)
|
|
|
|
} else {
|
|
return nil, errors.Errorf("agent has no share with token '%v'", req.Token)
|
|
}
|
|
return nil, nil
|
|
}
|