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
The function proxy_get_configuration() is not implemented anymore in Envoy. If it's used by a WASM plugin, Envoy prints this error message:
proxy_get_configuration()
[error][wasm] [source/extensions/common/wasm/wasm_vm.cc:38] Failed to load Wasm module due to a missing import: env.proxy_get_configuration
Therefore the function proxy_get_configuration() should be removed from the SDK.
Note: To get the plugin configuration, use getBufferBytes(WasmBufferType::PluginConfiguration, 0, configuration_size).
getBufferBytes(WasmBufferType::PluginConfiguration, 0, configuration_size)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The function
proxy_get_configuration()
is not implemented anymore in Envoy. If it's used by a WASM plugin, Envoy prints this error message:Therefore the function
proxy_get_configuration()
should be removed from the SDK.Note: To get the plugin configuration, use
getBufferBytes(WasmBufferType::PluginConfiguration, 0, configuration_size)
.The text was updated successfully, but these errors were encountered: