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
[[module]] name = "my-service-1" mem_pages_count = 1 logger_enabled = true [[module]] name = "my-service-2" mem_pages_count = 1 logger_enabled = true
tests::flow::my_service_1_structs::__m_generated_my_service_1::MGeneratedStructmy_service_1 tests::flow::my_service_2_structs::__m_generated_my_service_2::MGeneratedStructmy_service_2
Same wasm, 2 different Rust structs.
Can instance same module API 2 times which share same Rust types.
[[module]] name = "my-service" [[service]] name = "my-service_1" module = "my-service" mem_pages_count = 1 logger_enabled = true [[service]] name = "my-service_2" module = "my-service" mem_pages_count = 1 logger_enabled = true
In code
let mut s =my_service_1::new(); s =my_service_2::new();
I need test which checks replication logic.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Actual
Same wasm, 2 different Rust structs.
Expected
Can instance same module API 2 times which share same Rust types.
Solution:
In code
Why?
I need test which checks replication logic.
The text was updated successfully, but these errors were encountered: