Gwen Lg
|
24e11e99ee
|
style: some small fixes
- remove invalid struct pattern
lint message: struct pattern is not needed for a unit variant
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#unneeded_struct_pattern
- remove call to default() on unit struct
lint message: use of `default` to create a unit struct
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#default_constructed_unit_structs
- replace if/else by direct affectation
lint message: this if-then-else expression assigns a bool literal
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#needless_bool_assign
- replace assert_eq on unit by `unwrap` + let typed binding
|
2026-01-29 20:49:28 +01:00 |
|
Gwen Lg
|
5307b3f762
|
chore: remove unnecessary cast usize
lint message: casting to the same type is unnecessary (`u64` -> `u64`)
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#unnecessary_cast
+ disable `clippy::unnecessary_cast` for update_disk_usage
where the size of the input values depends on the platform
|
2026-01-29 20:49:28 +01:00 |
|
Gwen Lg
|
6dbcdcd784
|
style: improve use of std api
- replace get(0) by first()
lint message: accessing first element with `objs.get(0)`
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#get_first
- use io::Error::other method available since Rust 1.87
lint message: this can be `std::io::Error::other(_)`
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#io_other_error
- implement From<_> instead of Into<_>
lint message: an implementation of `From` is preferred since it gives you `Into<_>` for free where the reverse isn't true
help: `impl From<Local> for Foreign` is allowed by the orphan rules, for more information see
https://doc.rust-lang.org/reference/items/implementations.html#trait-implementation-coherence
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#from_over_into
- use next_back instead of rev + next
lint message: manual backwards iteration
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#manual_next_back
- use saturating_sub instead of manual implement it
lint message: manual arithmetic check found
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#implicit_saturating_sub
- add Default implementation for Checksummer
use derived Default ans use it in new, as new set all value to None
lint message: you should consider adding a `Default` implementation for `Checksummer`
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#new_without_default
- use `any` instead of `find` + `is_some`
lint message: called `is_some()` after searching an `Iterator` with `find`
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#search_is_some
- replace `and_then` + `Some(_)` with `map`
lint message: using `Option.and_then(|x| Some(y))`, which is more succinctly expressed as `map(|x| y)`
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#bind_instead_of_map
- replace `skip_while` + `next` with `find`
lint message: called `skip_while(<p>).next()` on an `Iterator`
help: this is more succinctly expressed by calling `.find(!<p>)` instead
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#skip_while_next
- use `matches!` instead of manual implementation
lint message: match expression looks like `matches!` macro
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#match_like_matches_macro
- use `keys` and `values methods insteads of iterating and ignoring either the keys or values.
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#iter_kv_map
|
2026-01-29 20:49:28 +01:00 |
|
Gwen Lg
|
21db7a4d4b
|
chore: remove various useless code
- call expect directly on Result
lint message: called `ok().expect()` on a `Result` value
help: you can call `expect()` directly on the `Result`
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#ok_expect
- use assign operation instead of manual implementation
lint message: manual implementation of an assign operation
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#assign_op_pattern
- remove useless call to format
lint message: useless use of `format!`
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#useless_format
- remove useless `?Sized`
lint message: `?Sized` bound is ignored because of a `Sized` requirement
note: ...because `Deserialize` has the bound `Sized`
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#needless_maybe_sized
- use is_some instead of pattern maching with Some(_)
lint message: redundant pattern matching, consider using `is_some()`
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#redundant_pattern_matching
- remove unneeded unit return type
lint message: unneeded unit return type
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#unused_unit
- remove redundant closure
lint message: redundant closure
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#redundant_closure
- use derive Default instead of manual implementation
lint message: this `impl` can be derived
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#derivable_impls
- remove unneeded `return` statement
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#needless_return
- remove empty string from println call
lint message: empty string literal in `println!`
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#println_empty_string
- remove clone() on type than implement Copy
lint message: using `clone` on type `Option<ChecksumValue>` which implements the `Copy` trait
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#clone_on_copy
- remove useless let binding
lint message: this let-binding has unit value
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#let_unit_value
- remove useless len comparison to zero, already test of empty
lint message: length comparison to zero
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#len_zero
- remove useless `as_deref` call
lint message: derefed type is same as origin
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#needless_option_as_deref
- remove useless conversion of the same type
lint message: useless conversion to the same type: `replication_mode::ReplicationFactor`
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#useless_conversion
- remove useless bool_comparison
lint message: equality checks against false can be replaced by a negation
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#bool_comparison
- remove useless to_string
lint message: unnecessary use of `to_string`
help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#unnecessary_to_owned
Signed-off-by: Gwen Lg <me@gwenlg.fr>
|
2026-01-29 20:49:28 +01:00 |
|
Gwen Lg
|
32da94cbbe
|
chore: rename strat into strategy to improve redability
`strat` is reported as error by typos
|
2026-01-29 14:53:27 +01:00 |
|
Gwen Lg
|
e9fbde3adf
|
chore: fix typos in variant Abandoned in enum PeerConnState
|
2026-01-29 14:53:27 +01:00 |
|
Gwen Lg
|
e331f88c85
|
chore: fix typos in rust code comment or error message
|
2026-01-29 14:53:27 +01:00 |
|
Alex Auvolat
|
582b168b6a
|
bump version to v2.2.0
|
2026-01-24 12:32:22 +01:00 |
|
trinity-1686a
|
ef913843f7
|
fmt
|
2025-11-01 19:35:11 +01:00 |
|
trinity-1686a
|
1fe932d07f
|
migrate to this error
it doesn't generate a bazillion warning at compile time
|
2025-11-01 17:25:23 +01:00 |
|
Alex Auvolat
|
b43f309ec7
|
bump version to v2.1.0
|
2025-09-15 15:50:02 +02:00 |
|
Alex Auvolat
|
d38d62f4d7
|
bump version to v2.0.0
|
2025-04-17 12:36:41 +02:00 |
|
Alex Auvolat
|
4689b10448
|
bump version to v1.1.0
|
2025-03-05 10:19:51 +01:00 |
|
Alex Auvolat
|
5475da8ea8
|
remove async_trait used in generic_server.rs
|
2025-02-05 20:31:34 +01:00 |
|
Alex Auvolat
|
620dc58560
|
remove async_trait for traits declared in garage_net
|
2025-02-05 20:22:16 +01:00 |
|
Stefan Majer
|
2eb9fcae20
|
Fix all typos
|
2025-01-16 13:22:00 +01:00 |
|
Alex Auvolat
|
7a143f46fc
|
Bump to version 1.0.1
|
2024-09-22 14:25:32 +02:00 |
|
Alex Auvolat
|
afad62939e
|
[next-0.10] bump version number to 1.0
|
2024-03-28 15:19:44 +01:00 |
|
Alex Auvolat
|
8bfc16ba7d
|
Merge branch 'main' into next-0.10
|
2024-03-28 15:01:05 +01:00 |
|
Alex Auvolat
|
85f580cbde
|
[fix-buffering] change request sending strategy and fix priorities
remove LAS, priorize new requests but otherwise just do standard queuing
|
2024-03-27 16:22:40 +01:00 |
|
Alex Auvolat
|
3844110cd0
|
[net-fixes] netapp peer exchange: send only currently connected address
|
2024-03-21 10:50:44 +01:00 |
|
Alex Auvolat
|
961b4f9af3
|
[net-fixes] fix issues with local peer address (fix #761)
|
2024-03-21 10:45:34 +01:00 |
|
Alex Auvolat
|
5225a81dee
|
[net-fixes] peering: only count node IDs and not addresses in hash
|
2024-03-21 09:47:04 +01:00 |
|
Alex Auvolat
|
bbde9bc912
|
Merge branch 'main' into next-0.10
|
2024-03-04 15:56:10 +01:00 |
|
Alex Auvolat
|
8670140358
|
[rel-0.9.3] Bump version to 0.9.3
|
2024-03-04 14:00:55 +01:00 |
|
Alex Auvolat
|
6a7623e90d
|
[rel-0.9.2] Bump version to v0.9.2
|
2024-03-01 16:54:39 +01:00 |
|
Alex Auvolat
|
916c67ccf4
|
Merge branch 'main' into next-0.10
|
2024-02-23 16:50:34 +01:00 |
|
Alex Auvolat
|
9b41f4ff20
|
[refactor-block] move read_stream_to_end to garage_net
|
2024-02-23 11:46:57 +01:00 |
|
Alex Auvolat
|
643d1aabd8
|
Merge branch 'main' into next-0.10
|
2024-02-20 17:02:44 +01:00 |
|
Alex Auvolat
|
95e3a39b4d
|
[networking-fixes] small refactoring in garage_net peering
|
2024-02-19 18:12:21 +01:00 |
|
Alex Auvolat
|
66fe893023
|
[networking-fixes] garage_net: retry connecting when new IP is learned
|
2024-02-19 18:12:21 +01:00 |
|
Alex Auvolat
|
b96f84b894
|
[networking-fixes] add option to bind outgoing RPC sockets (fix #638)
Thanks to yuka for the original patch.
|
2024-02-19 11:45:44 +01:00 |
|
Alex Auvolat
|
f0bbad2db9
|
[networking-fixes] use rpc_public_addr in netapp's HelloMessage
|
2024-02-19 11:45:44 +01:00 |
|
Alex Auvolat
|
eb4a6ce106
|
Merge branch 'main' into next-0.10
|
2024-02-15 14:06:34 +01:00 |
|
Alex Auvolat
|
125c662860
|
[import-netapp] move and rename FullMeshPeeringSrategy to PeeringManager
|
2024-02-15 12:15:35 +01:00 |
|
Alex Auvolat
|
5766befb24
|
[import-netapp] fix tests
|
2024-02-15 12:15:33 +01:00 |
|
Alex Auvolat
|
5ea24254a9
|
[import-netapp] import Netapp code into Garage codebase
|
2024-02-15 12:15:07 +01:00 |
|