From 65e843620fbcad024e5093d32ffa4a095798bed7 Mon Sep 17 00:00:00 2001 From: AJ Mercer Date: Wed, 19 Jun 2024 21:42:31 +0200 Subject: [PATCH] Update websocket-extension.md added note about requiring a Lucee restart --- docs/recipes/websocket-extension.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/recipes/websocket-extension.md b/docs/recipes/websocket-extension.md index 21cd782a3..e0733fb41 100644 --- a/docs/recipes/websocket-extension.md +++ b/docs/recipes/websocket-extension.md @@ -28,7 +28,7 @@ The Extension can be installed via Lucee Administor ![Lucee Admin: Extensions - Application](https://raw.githubusercontent.com/lucee/lucee-docs/master/docs/_images/extension/websocket/lucee-admin-extension.png) -### Manuell Installation +### Manual Installation Download the LEX file from [https://download.lucee.org/](https://download.lucee.org/) and save to `/lucee/lucee-server/deploy/` (takes up to a minute for Lucee to pick up and install) @@ -85,6 +85,8 @@ The WebSocket Extension comes with a helper function `websocketInfo()` that well TODO: update with new version ## Component +>[!IMPORTANT] +>a Lucee restart is required when a new WebSocket CFC is added (just like for a ReST CFC) ```lucee component hint="used to test websocket client" { @@ -267,4 +269,4 @@ for ( var wsI in wsInstances) { ``` [Task Event Gateway](event-gateways-overview.md) is a good candidate for this script -*TODO: link to recipe page* \ No newline at end of file +*TODO: link to recipe page*