From db619ca0f34c9607cc7b70aa0f6b3e9716dc961a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Duffeck?= Date: Fri, 17 Jan 2025 11:29:14 +0100 Subject: [PATCH] Rebrand sse --- services/sse/README.md | 2 +- services/sse/pkg/command/root.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/services/sse/README.md b/services/sse/README.md index d6a5f1ecb1..a7fa95a46d 100644 --- a/services/sse/README.md +++ b/services/sse/README.md @@ -11,7 +11,7 @@ Log services like the `userlog`, `clientlog` and `sse` are responsible for compo ## Subscribing -Clients can subscribe to the `/sse` endpoint to be informed by the server when an event happens. The `sse` endpoint will respect language changes of the user without needing to reconnect. Note that SSE has a limitation of six open connections per browser which can be reached if one has opened various tabs of the Web UI pointing to the same Infinite Scale instance. +Clients can subscribe to the `/sse` endpoint to be informed by the server when an event happens. The `sse` endpoint will respect language changes of the user without needing to reconnect. Note that SSE has a limitation of six open connections per browser which can be reached if one has opened various tabs of the Web UI pointing to the same OpenCloud instance. ## Keep SSE Connections Alive diff --git a/services/sse/pkg/command/root.go b/services/sse/pkg/command/root.go index 5686bf2bc8..85082333e3 100644 --- a/services/sse/pkg/command/root.go +++ b/services/sse/pkg/command/root.go @@ -22,7 +22,7 @@ func GetCommands(cfg *config.Config) cli.Commands { func Execute(cfg *config.Config) error { app := clihelper.DefaultApp(&cli.App{ Name: "sse", - Usage: "Serve ownCloud sse for oCIS", + Usage: "Serve sse for OpenCloud", Commands: GetCommands(cfg), })