feat: Integrated metric manager into the gateway

This commit is contained in:
jonaustin09
2024-05-28 12:50:50 -07:00
committed by Ben McClelland
parent 3408470d7b
commit be6f9a86cd
14 changed files with 451 additions and 214 deletions
+329 -163
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -77,7 +77,7 @@ func TestNew(t *testing.T) {
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := New(tt.args.be, tt.args.iam, nil, nil, false, false)
got := New(tt.args.be, tt.args.iam, nil, nil, nil, false, false)
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("New() = %v, want %v", got, tt.want)
}