We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: Cannot compose insecure credential
Cannot compose insecure credential
const metadataUpdater = (_, cb) => { const metadata = new grpc.Metadata() metadata.set('key', 'test11') cb(null, metadata) } const metadataCreds = grpc.credentials.createFromMetadataGenerator( metadataUpdater ) const insecureSSL = grpc.credentials.createInsecure() obClient = new serviceProto( `${host:port}`, grpc.credentials.combineChannelCredentials(insecureSSL, metadataCreds) )
The text was updated successfully, but these errors were encountered:
Please see #543 for an explanation of this behavior.
Sorry, something went wrong.
No branches or pull requests
Problem description
Error:
Cannot compose insecure credential
Reproduction steps
Environment
The text was updated successfully, but these errors were encountered: