You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I run "./proxy --addr=0.0.0.0:80 --addr-rpc=0.0.0.0:9091
--filter JWT:jwt.so:jwt.json
--addr-store=etcd://127.0.0.1:2379 --namespace=product"
I got an error like " plugin not implemented".
After googling the issue, I found that "golang/go#19569"
plugin: requires CGO_ENABLED=1
but in the release.sh , CGO_ENABLED was set to 0 by default.
The text was updated successfully, but these errors were encountered:
If you want to use custom filter, you need to build gateway by your self. Because:
when build a go project using cgo, you can found that the binary depends on gcc and some .so files if you using ldd to check, it was unfriendly to containerization.
you must be sure the env of gateway compile, plugin compile and the docker images are same.
when I run "./proxy --addr=0.0.0.0:80 --addr-rpc=0.0.0.0:9091
--filter JWT:jwt.so:jwt.json
--addr-store=etcd://127.0.0.1:2379 --namespace=product"
I got an error like " plugin not implemented".
After googling the issue, I found that "golang/go#19569"
plugin: requires CGO_ENABLED=1
but in the release.sh , CGO_ENABLED was set to 0 by default.
The text was updated successfully, but these errors were encountered: