This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a change to branch server-config-refactor
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit fccd742f2 refactor(configs): move ServerConfig types from server to
configs crate
add 87cb23618 refactor(configs): move ServerConfig types from server to
configs crate
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (fccd742f2)
\
N -- N -- N refs/heads/server-config-refactor (87cb23618)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
Cargo.lock | 8 +-
core/configs/Cargo.toml | 10 -
core/configs/src/lib.rs | 3 -
core/configs/src/server_config/sharding.rs | 388 ---------------------
core/configs/src/server_config/validators.rs | 24 +-
core/configs/src/sharding_error.rs | 46 ---
core/server/Cargo.toml | 2 +
core/server/src/bootstrap.rs | 2 +-
core/server/src/lib.rs | 1 +
core/server/src/main.rs | 2 +-
core/server/src/server_error.rs | 2 +-
.../sharding.rs => server/src/shard_allocator.rs} | 357 ++++---------------
12 files changed, 84 insertions(+), 761 deletions(-)
delete mode 100644 core/configs/src/sharding_error.rs
copy core/{configs/src/server_config/sharding.rs =>
server/src/shard_allocator.rs} (54%)