Skip to content
New issue

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

change host_state drop order for InstanceHandle #2812

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/api/src/sys/module.rs
Expand Up @@ -268,7 +268,7 @@ impl Module {
let instance_handle = self.artifact.instantiate(
self.store.tunables(),
resolver,
Box::new((self.store.clone(), self.artifact.clone())),
Box::new((self.artifact.clone(), self.store.clone())),
yun-yeo marked this conversation as resolved.
Show resolved Hide resolved
)?;

// After the instance handle is created, we need to initialize
Expand Down