You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---- iroh-net/src/discovery.rs - discovery (line 73) stdout ----
error[E0432]: unresolved import `iroh_net::discovery::local_swarm_discovery`
--> iroh-net/src/discovery.rs:76:26
|
6 | use iroh_net::discovery::local_swarm_discovery::LocalSwarmDiscovery;
| ^^^^^^^^^^^^^^^^^^^^^ could not find `local_swarm_discovery` in `discovery`
|
note: found an item that was configured out
--> /Users/dignified/opensource/iroh/iroh-net/src/discovery.rs:115:9
|
115 | pub mod local_swarm_discovery;
| ^^^^^^^^^^^^^^^^^^^^^
note: the item is gated behind the `discovery-local-network` feature
--> /Users/dignified/opensource/iroh/iroh-net/src/discovery.rs:113:7
|
113 | #[cfg(feature = "discovery-local-network")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0432`.
Couldn't compile the test.
failures:
iroh-net/src/discovery.rs - discovery (line 73)
The text was updated successfully, but these errors were encountered:
## Description
This test can only work if the feature is enabled. Feature-flag the
entire test contents.
Closes#2950.
## Breaking Changes
<!-- Optional, if there are any breaking changes document them,
including how to migrate older code. -->
## Notes & open questions
<!-- Any notes, remarks or open questions you have to make about the PR.
-->
## Change checklist
- [x] Self-review.
- [x] Documentation updates following the [style
guide](https://rust-lang.github.io/rfcs/1574-more-api-documentation-conventions.html#appendix-a-full-conventions-text),
if relevant.
- [x] Tests if relevant.
- [x] All breaking changes documented.
fails with
The text was updated successfully, but these errors were encountered: