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

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


 discard 85584bc4 feat(io_uring): implement task supervisor
     new 759ead27 feat(io_uring): implement task supervisor
     new aa304b03 builder
     new daf781b8 refactor

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   (85584bc4)
            \
             N -- N -- N   refs/heads/io_uring_tpc_task_registry (daf781b8)

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.

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 core/common/src/error/iggy_error.rs                |   2 +
 core/server/Cargo.toml                             |   1 -
 core/server/src/http/http_server.rs                |  28 +-
 core/server/src/http/mod.rs                        |   2 +-
 core/server/src/main.rs                            |   4 -
 core/server/src/quic/listener.rs                   |  89 ++--
 core/server/src/shard/builder.rs                   |  20 +-
 core/server/src/shard/mod.rs                       |  23 +-
 core/server/src/shard/task_registry/builders.rs    |  22 +
 .../src/shard/task_registry/builders/continuous.rs | 116 +++++
 .../src/shard/task_registry/builders/oneshot.rs    | 128 +++++
 .../src/shard/task_registry/builders/periodic.rs   | 144 ++++++
 core/server/src/shard/task_registry/mod.rs         |  12 +
 core/server/src/shard/task_registry/registry.rs    | 550 +++++++++++++++++++++
 .../src/shard/{tasks => task_registry}/shutdown.rs |   0
 core/server/src/shard/task_registry/specs.rs       |  59 +++
 core/server/src/shard/task_registry/tls.rs         | 104 ++++
 .../src/shard/tasks/continuous/http_server.rs      |  27 +-
 .../src/shard/tasks/continuous/message_pump.rs     |  51 +-
 core/server/src/shard/tasks/continuous/mod.rs      |   2 -
 .../src/shard/tasks/continuous/quic_server.rs      |  20 +-
 .../src/shard/tasks/continuous/tcp_server.rs       |  24 +-
 core/server/src/shard/tasks/mod.rs                 |  90 ++--
 .../src/shard/tasks/periodic/clear_jwt_tokens.rs   |  92 ++++
 .../tasks/periodic/clear_personal_access_tokens.rs | 101 ++--
 core/server/src/shard/tasks/periodic/mod.rs        |   2 +
 .../src/shard/tasks/periodic/print_sysinfo.rs      | 122 +++--
 .../src/shard/tasks/periodic/save_messages.rs      | 128 +++--
 .../src/shard/tasks/periodic/verify_heartbeats.rs  | 129 +++--
 core/server/src/shard/tasks/specs.rs               | 203 --------
 core/server/src/shard/tasks/supervisor.rs          | 522 -------------------
 core/server/src/shard/tasks/tls.rs                 | 141 ------
 core/server/src/slab/streams.rs                    |   6 +-
 core/server/src/tcp/tcp_listener.rs                |  12 +-
 core/server/src/tcp/tcp_tls_listener.rs            |   8 +-
 35 files changed, 1639 insertions(+), 1345 deletions(-)
 create mode 100644 core/server/src/shard/task_registry/builders.rs
 create mode 100644 core/server/src/shard/task_registry/builders/continuous.rs
 create mode 100644 core/server/src/shard/task_registry/builders/oneshot.rs
 create mode 100644 core/server/src/shard/task_registry/builders/periodic.rs
 create mode 100644 core/server/src/shard/task_registry/mod.rs
 create mode 100644 core/server/src/shard/task_registry/registry.rs
 rename core/server/src/shard/{tasks => task_registry}/shutdown.rs (100%)
 create mode 100644 core/server/src/shard/task_registry/specs.rs
 create mode 100644 core/server/src/shard/task_registry/tls.rs
 create mode 100644 core/server/src/shard/tasks/periodic/clear_jwt_tokens.rs
 delete mode 100644 core/server/src/shard/tasks/specs.rs
 delete mode 100644 core/server/src/shard/tasks/supervisor.rs
 delete mode 100644 core/server/src/shard/tasks/tls.rs

Reply via email to