File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ build: ## Build all binaries under cmd/ directory.
273273# This builds the dynamic module filter for Envoy. This is the shared library that can be loaded by Envoy to run the AI Gateway filter.
274274.PHONE : build-dm
275275build-dm : # # Build the dynamic module for Envoy.
276- CGO_ENABLED=1 go build -tags " envoy_1.36" -buildmode=c-shared -o $(OUTPUT_DIR ) /libaigateway.so ./internal /dynamic_module
276+ CGO_ENABLED=1 go build -tags " envoy_1.36" -buildmode=c-shared -o $(OUTPUT_DIR ) /libaigateway.so ./cmd /dynamic_module
277277
278278# This builds the docker images for the controller, extproc and testupstream for the e2e tests.
279279.PHONY : build-e2e
Original file line number Diff line number Diff line change @@ -37,13 +37,13 @@ func init() {
3737 sdk .NewHTTPFilterConfig = g .newHTTPFilterConfig
3838}
3939
40- // filterConfigReceiverImpl implements [filterapi.ConfigReceiver] to load filter configuration.
40+ // globalState implements [filterapi.ConfigReceiver] to load filter configuration.
4141type globalState struct {
4242 fc * filterapi.RuntimeConfig
4343 env * dynamic_module.Env
4444}
4545
46- // newHTTPFilter creates a new http filter based on the config.
46+ // newHTTPFilterConfig creates a new http filter based on the config.
4747//
4848// `config` is the configuration string that is specified in the Envoy configuration.
4949func (g * globalState ) newHTTPFilterConfig (name string , _ []byte ) sdk.HTTPFilterConfig {
You can’t perform that action at this time.
0 commit comments