Following the refactor of the PeachError type in peach-lib, we now have errors in peach-probe. For example:
error[E0769]: tuple variant `PeachError::JsonRpcHttp` written as struct variant
--> peach-probe/src/probe.rs:186:21
|186| PeachError::JsonRpcHttp {source}=> {| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: use the tuple variant pattern syntax instead
|186| PeachError::JsonRpcHttp(source)=> {
Following the refactor of the `PeachError` type in peach-lib, we now have errors in peach-probe. For example:
```bash
error[E0769]: tuple variant `PeachError::JsonRpcHttp` written as struct variant
--> peach-probe/src/probe.rs:186:21
|
186 | PeachError::JsonRpcHttp { source } => {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: use the tuple variant pattern syntax instead
|
186 | PeachError::JsonRpcHttp(source) => {
```
glyph
added the bug label 2021-12-07 12:19:40 +00:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Following the refactor of the
PeachErrortype in peach-lib, we now have errors in peach-probe. For example: