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

Need to resolve Github CI program compilation errors #83

Closed
Jzow opened this issue Aug 19, 2023 · 0 comments
Closed

Need to resolve Github CI program compilation errors #83

Jzow opened this issue Aug 19, 2023 · 0 comments
Labels
bug Something isn't working

Comments

@Jzow
Copy link
Member

Jzow commented Aug 19, 2023

The problem with this error stems from the inability to find the UnixListenerclause

CI error log

error[E0432]: unresolved import `super::UnixListener`
 --> summer-boot/src/tcp/parsed.rs:2:5
  |
2 | use super::UnixListener;
  |     ^^^^^^^^^^^^^^^^^^^ no `UnixListener` in `tcp`
  |
help: a similar name exists in the module
  |
2 | use super::ToListener;
  |            ~~~~~~~~~~
help: consider importing one of these items instead
  |
2 | use async_std::os::unix::net::UnixListener;
  |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 | use std::os::unix::net::UnixListener;
  |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 | use tokio::net::UnixListener;
  |     ~~~~~~~~~~~~~~~~~~~~~~~~

error[E0432]: unresolved import `super::UnixListener`
 --> summer-boot/src/tcp/to_listener_impls.rs:2:5
  |
2 | use super::UnixListener;
  |     ^^^^^^^^^^^^^^^^^^^ no `UnixListener` in `tcp`
  |
help: a similar name exists in the module
@Jzow Jzow added the bug Something isn't working label Aug 19, 2023
@Jzow Jzow closed this as completed Aug 20, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant