From b92fde0275785790a90e392cec895f338a1af051 Mon Sep 17 00:00:00 2001 From: Brian Neville <29639579+brianneville@users.noreply.github.com> Date: Tue, 19 Dec 2023 17:38:24 +0000 Subject: [PATCH] reword comment and specify mode in index.md --- pathz/index.md | 6 +++--- pathz/pathz.proto | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pathz/index.md b/pathz/index.md index e810be2..3bd9a01 100644 --- a/pathz/index.md +++ b/pathz/index.md @@ -120,9 +120,9 @@ the rotation gets finalized. For example, consider a system with the following installed rules: ```text -/a/b/[k0=*]/c -> user Alice, action PERMIT -/a/b/[k0=*]/c -> user Bob, action PERMIT -/a/b/[k0=*]/c -> user Charlie, action PERMIT +/a/b/[k0=*]/c -> user Alice, action PERMIT READ +/a/b/[k0=*]/c -> user Bob, action PERMIT READ +/a/b/[k0=*]/c -> user Charlie, action PERMIT READ ``` Then:
user Alice subscribes to `/a`
diff --git a/pathz/pathz.proto b/pathz/pathz.proto index 677a036..417622c 100644 --- a/pathz/pathz.proto +++ b/pathz/pathz.proto @@ -157,8 +157,8 @@ message UploadRequest { } message UploadResponse { - // client_info contains information about all the ongoing subscriptions on - // the system, and how the policy from the the UploadRequest will affect them + // clients contains information about all the gNMI clients with + // ongoing subscriptions to the system repeated ClientInfo clients = 1; }