Skip to content

Commit

Permalink
Fix links to website
Browse files Browse the repository at this point in the history
  • Loading branch information
rukai committed Dec 4, 2024
1 parent 8852e9c commit 6485fb7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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?

Expand Down
8 changes: 4 additions & 4 deletions shotover-proxy/config/topology.yaml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion shotover/src/config/topology.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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![
Expand Down
2 changes: 1 addition & 1 deletion shotover/src/transforms/coalesce.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 6485fb7

Please sign in to comment.