From a8307d2c2e49baa4c9e90100a36244f45b620017 Mon Sep 17 00:00:00 2001 From: Pavel Antonov <antonov@perx.ru> Date: Tue, 19 Nov 2024 14:07:05 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D1=8B=20=D0=BE=D0=BF=D1=86=D0=B8=D0=B8=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20=D0=BF=D0=BE=D0=B8=D1=81=D0=BA=D0=B0=20=D0=BF=D0=BE=20?= =?UTF-8?q?=D0=BB=D0=BE=D0=B3=D0=B0=D0=BC=20=D0=B8=20=D0=B2=D0=BE=D0=B7?= =?UTF-8?q?=D0=B2=D1=80=D0=B0=D1=82=20=D0=BF=D1=80=D0=B5=D0=B4=D1=8B=D0=B4?= =?UTF-8?q?=D1=83=D1=89=D0=B5=D0=B3=D0=BE=20=D0=B8=20=D1=81=D0=BB=D0=B5?= =?UTF-8?q?=D0=B4=D1=83=D1=8E=D1=89=D0=B5=D0=B3=D0=BE=20=D0=B7=D0=B0=D0=BF?= =?UTF-8?q?=D1=80=D0=BE=D1=81=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- proto/logs/log_service.proto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/proto/logs/log_service.proto b/proto/logs/log_service.proto index b968249..3aa12a9 100644 --- a/proto/logs/log_service.proto +++ b/proto/logs/log_service.proto @@ -79,6 +79,9 @@ message FindRequest { // Результат РїРѕРёСЃРєР° message FindResult { + reserved 4; + // uint32 total = 4; // Устарело, РЅРµ используется + // Найденные записи лога repeated LogEntry entries = 1; @@ -87,10 +90,7 @@ message FindResult { Filter filter = 2; // Рспользовавшиеся для РїРѕРёСЃРєР° опции - common.FindOptions options = 3; - - // Общее количество найденных записей - uint32 total = 4; // DEPRECATED + FindOptions options = 3; // Запрос для получения следующей страницы FindRequest next = 5; -- GitLab