Feature request per pod (#1946)

This feature enables routing more than one request to a pod at the same time. This is the first draft of the work and might involve more optimizations later.
This commit is contained in:
Rahul Bhati
2021-03-31 12:35:30 +05:30
committed by GitHub
parent 3e6dae9616
commit 25acd7fd16
39 changed files with 511 additions and 264 deletions
+2 -1
View File
@@ -18,6 +18,7 @@ package controller
import (
"context"
"go.uber.org/zap"
"github.com/fission/fission/pkg/crd"
@@ -26,7 +27,7 @@ import (
func Start(logger *zap.Logger, port int, unitTestFlag bool) {
cLogger := logger.Named("controller")
fc, kc, apiExtClient, err := crd.MakeFissionClient()
fc, kc, apiExtClient, _, err := crd.MakeFissionClient()
if err != nil {
cLogger.Fatal("failed to connect to k8s API", zap.Error(err))
}