This is an automated email from the ASF dual-hosted git repository.

hgruszecki pushed a change to branch loopback-queue
in repository https://gitbox.apache.org/repos/asf/iggy.git


 discard 4d969b8bf feat(consensus): add loopback queue for primary 
self-addressed messages
     add d5d31e500 ci(go): add Codecov coverage for Go SDK (#2793)
     add 6f01169b8 fix(ci): use cargo-llvm-cov for Python SDK coverage (#2817)
     add 3432714ab feat(simulator): implement PacketSimulator for deterministic 
simulator (#2769)
     add 33610e687 feat(consensus): add loopback queue for primary 
self-addressed messages

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   (4d969b8bf)
            \
             N -- N -- N   refs/heads/loopback-queue (33610e687)

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:
 .../actions/python-maturin/pre-merge/action.yml    |  74 +-
 .github/workflows/_test.yml                        |  14 +-
 .github/workflows/post-merge.yml                   |  91 +-
 .github/workflows/pre-merge.yml                    |   2 +
 Cargo.lock                                         |  26 +
 Cargo.toml                                         |   1 +
 DEPENDENCIES.md                                    |   2 +
 codecov.yml                                        |   4 +-
 core/common/Cargo.toml                             |   1 +
 core/common/src/types/consensus/header.rs          |   3 +-
 core/consensus/src/impls.rs                        |   4 +-
 core/metadata/src/impls/metadata.rs                |   6 -
 core/shard/src/lib.rs                              |   8 +-
 core/simulator/Cargo.toml                          |   4 +
 core/simulator/src/lib.rs                          |   3 +
 core/simulator/src/network.rs                      | 150 ++++
 core/simulator/src/packet.rs                       | 982 +++++++++++++++++++++
 core/simulator/src/ready_queue.rs                  | 261 ++++++
 18 files changed, 1598 insertions(+), 38 deletions(-)
 create mode 100644 core/simulator/src/network.rs
 create mode 100644 core/simulator/src/packet.rs
 create mode 100644 core/simulator/src/ready_queue.rs

Reply via email to