From 6485fb74f6a5ff769fe9695346ca44da4c361973 Mon Sep 17 00:00:00 2001 From: Lucas Kent Date: Wed, 4 Dec 2024 13:40:16 +1100 Subject: [PATCH] Fix links to website --- README.md | 4 ++-- shotover-proxy/config/topology.yaml | 8 ++++---- shotover/src/config/topology.rs | 2 +- shotover/src/transforms/coalesce.rs | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index b6a3e4f23..a2fe6f8ce 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,12 @@ ## Documentation -For full documentation please go to [https://docs.shotover.io/](https://docs.shotover.io/shotover-blog/docs/user-guide/introduction.html) +For full documentation please go to [https://shotover.io/docs/latest](https://shotover.io/docs/latest/user-guide/introduction.html) ## Building Shotover is supported on Linux and macOS. -To build Shotover from source please refer to [the contributing documentation](https://docs.shotover.io/shotover-blog/docs/contributing.html) +To build Shotover from source please refer to [the contributing documentation](https://shotover.io/docs/latest/dev-docs/contributing.html) ## What is Shotover? diff --git a/shotover-proxy/config/topology.yaml b/shotover-proxy/config/topology.yaml index 66fa99b1a..81deea19f 100644 --- a/shotover-proxy/config/topology.yaml +++ b/shotover-proxy/config/topology.yaml @@ -1,19 +1,19 @@ -# For an overview of topology configuration: https://docs.shotover.io/user-guide/configuration/#topologyyaml +# For an overview of topology configuration: https://shotover.io/docs/latest/user-guide/configuration/#topologyyaml --- # The list of sources. sources: # The source, change from Valkey to the source type of the database protocol you are receiving messages in. - # For a list of possible sources: https://docs.shotover.io/sources + # For a list of possible sources: https://shotover.io/docs/latest/sources - Valkey: name: "valkey" listen_addr: "127.0.0.1:6379" chain: # A DebugPrinter transform, reports an INFO log for every message that passes through this transform. # You should delete this transform and add as many other transforms in this chain as you need. - # For a list of possible transforms: https://docs.shotover.io/transforms/#transforms_1 + # For a list of possible transforms: https://shotover.io/docs/latest/transforms/#transforms-1 - DebugPrinter # A NullSink transform, drops all messages it receives. # You will want to replace this with a sink transform to send the message to a database. - # For a list of possible transforms: https://docs.shotover.io/transforms/#transforms_1 + # For a list of possible transforms: https://shotover.io/docs/latest/transforms/#transforms-1 - NullSink diff --git a/shotover/src/config/topology.rs b/shotover/src/config/topology.rs index 3530a85d4..b8016085b 100644 --- a/shotover/src/config/topology.rs +++ b/shotover/src/config/topology.rs @@ -180,7 +180,7 @@ foo source: * flush_when_millis_since_last_flush But none of them were provided. - Check https://docs.shotover.io/transforms.html#coalesce for more information. + Check https://shotover.io/docs/latest/transforms.html#coalesce for more information. "#; let error = run_test_topology_valkey(vec![ diff --git a/shotover/src/transforms/coalesce.rs b/shotover/src/transforms/coalesce.rs index 33bc2084c..2007ba8b1 100644 --- a/shotover/src/transforms/coalesce.rs +++ b/shotover/src/transforms/coalesce.rs @@ -66,7 +66,7 @@ impl TransformBuilder for Coalesce { " * flush_when_millis_since_last_flush".into(), "".into(), " But none of them were provided.".into(), - " Check https://docs.shotover.io/transforms.html#coalesce for more information." + " Check https://shotover.io/docs/latest/transforms.html#coalesce for more information." .into(), ] } else {