zrok/controller/limits/environmentRelaxAction.go

23 lines
669 B
Go
Raw Normal View History

2023-03-27 17:43:58 +02:00
package limits
import (
"github.com/jmoiron/sqlx"
2023-03-27 17:43:58 +02:00
"github.com/openziti/edge/rest_management_api_client"
"github.com/openziti/zrok/controller/store"
"github.com/sirupsen/logrus"
)
type environmentRelaxAction struct {
str *store.Store
edge *rest_management_api_client.ZitiEdgeManagement
}
func newEnvironmentRelaxAction(str *store.Store, edge *rest_management_api_client.ZitiEdgeManagement) *environmentRelaxAction {
return &environmentRelaxAction{str, edge}
}
func (a *environmentRelaxAction) HandleEnvironment(e *store.Environment, rxBytes, txBytes int64, limit *BandwidthPerPeriod, trx *sqlx.Tx) error {
2023-03-27 17:43:58 +02:00
logrus.Infof("relaxing '%v'", e.ZId)
return nil
}