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
I am trying to compile a program that imports some grpc consts for wasm.
The code was compiling perfectly fine on 0.30.0 while after upgrading to 0.31.1 I keep getting:
../../../../pkg/mod/google.golang.org/[email protected]/internal/credentials/spiffe.go:37:15: state.PeerCertificates undefined (type tls.ConnectionState has no field or method PeerCertificates)
../../../../pkg/mod/google.golang.org/[email protected]/internal/credentials/spiffe.go:37:51: state.PeerCertificates undefined (type tls.ConnectionState has no field or method PeerCertificates)
../../../../pkg/mod/google.golang.org/[email protected]/internal/credentials/spiffe.go:40:32: state.PeerCertificates undefined (type tls.ConnectionState has no field or method PeerCertificates)
../../../../pkg/mod/google.golang.org/[email protected]/internal/credentials/spiffe.go:40:32: state.PeerCertificates undefined (type tls.ConnectionState has no field or method PeerCertificates)
../../../../pkg/mod/google.golang.org/[email protected]/internal/credentials/util.go:51:13: cfg.Clone undefined (type *tls.Config has no field or method Clone)
by simply importing "google.golang.org/grpc/codes"
I suspect it happens as a result of adaptation made for tls to work with #3704 PR. Was this intentional and I should change something on my side?
Thanks
The text was updated successfully, but these errors were encountered:
3ddi
changed the title
Failing to include grpc in build
Failing to import grpc in build
Feb 29, 2024
3ddi
changed the title
Failing to import grpc in build
Failing to import grpc in wasm build
Feb 29, 2024
3ddi
changed the title
Failing to import grpc in wasm build
Partial TLS support for wasm
Mar 3, 2024
I am trying to compile a program that imports some grpc consts for wasm.
The code was compiling perfectly fine on 0.30.0 while after upgrading to 0.31.1 I keep getting:
by simply importing
"google.golang.org/grpc/codes"
I suspect it happens as a result of adaptation made for tls to work with #3704 PR. Was this intentional and I should change something on my side?
Thanks
The text was updated successfully, but these errors were encountered: