-
Notifications
You must be signed in to change notification settings - Fork 13
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
shim: organize code to different modules #185
Conversation
71255a7
to
7e35184
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thanks for this reorganization
7e35184
to
5d8c10f
Compare
Containerd logs for the failured spin wasm workloads:
|
5d8c10f
to
df5cd15
Compare
@Mossaka I wonder if tests that used to run sequentially are now running in parallel or if this is a race case. In the integration tests, maybe we should randomize the host port for port forwarding rather than keeping it always at 8082 |
That might be a good idea in general, but it won't help in this case, cuz I can reproduce it in my local running |
this commit organized code to different modules: - constants: to handling constants across entire crate - engine: the execution engine - source: manages application sources - stdio_hook: a trigger hook for stdio - trigger: manages spin triggers - utils: utility functions it also removes ResolvedAppSource as it's not needed Signed-off-by: jiaxiao zhou <jiazho@microsoft.com>
…d of Vec Signed-off-by: jiaxiao zhou <duibao55328@gmail.com>
7086cb3
to
79d54ba
Compare
is fixed by 79d54ba |
this commit organized code to different modules:
it also removes ResolvedAppSource as it's not needed