Skip to content

Commit 61ab677

Browse files
committed
[docs] fix broken links & checker
Signed-off-by: Gerd Zellweger <mail@gerdzellweger.com>
1 parent e11eb36 commit 61ab677

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

.github/workflows/docs-linkcheck.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Link Checker docs.feldera.com
22

33
on:
44
schedule:
5-
- cron: "0 0 * * *"
5+
- cron: "0 16 * * *"
66
workflow_dispatch:
77

88
jobs:
@@ -21,3 +21,4 @@ jobs:
2121
- name: Check links on feldera.com
2222
run: |
2323
uv run --locked linkchecker https://docs.feldera.com --check-extern --no-warnings --ignore-url "https?://localhost|https://crates.io|https://www.linkedin.com|https://ieeexplore.ieee.org|https://x.com|https?://127.0.0.1" --no-robots
24+
working-directory: docs.feldera.com

crates/feldera-types/src/query_params.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use serde::Deserialize;
44
use utoipa::{IntoParams, ToSchema};
55

66
/// Circuit metrics output format.
7-
/// - `prometheus`: [format](https://github.com/prometheus/docs/blob/main/content/docs/instrumenting/exposition_formats.md) expected by Prometheus
7+
/// - `prometheus`: [format](https://github.com/prometheus/docs/blob/4b1b80f5f660a2f8dc25a54f52a65a502f31879a/docs/instrumenting/exposition_formats.md) expected by Prometheus
88
/// - `json`: JSON format
99
#[derive(Debug, Deserialize, ToSchema)]
1010
#[serde(rename_all = "snake_case")]

docs.feldera.com/docs/connectors/completion-tokens.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ There are two ways to generate a completion token, depending on the type of the
6262
## Checking completion status
6363

6464
To check the processing status of a token, call the
65-
[`/completion_status`](https://docs.feldera.com/api/check-the-status-of-a-completion-token-returned-by-the-ingress-or-completion-token-endpoint)
65+
[`/completion_status`](https://docs.feldera.com/api/check-the-status-of-a-completion-token-returned-by-the-ingress-or-completion-token)
6666
endpoint with the token. The endpoint returns
6767
`"complete"` if the data associated with the token has been fully processed and all outputs derived from
6868
it have been written to all connected data sinks. It returns `"inprogress"` otherwise.
@@ -149,4 +149,4 @@ CREATE TABLE price (
149149
{
150150
"status": "complete"
151151
}
152-
```
152+
```

docs.feldera.com/docs/literature/videos.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ Mihai Budiu, Carnegie Mellon Seminar on Databases, May 2025
1515

1616
Mihai Budiu, Calcite Meetup, February 2024
1717

18-
<LiteYouTubeEmbed id="PHm5vZ1A43I?t=2209" />
18+
Presentation starts at `36:50`
19+
20+
<LiteYouTubeEmbed id="PHm5vZ1A43I" />
1921

2022
## Incremental View Maintenance in Feldera
2123

docs.feldera.com/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "docs-feldera-com"
33
version = "0.1.0"
44
description = "Add your description here"
55
readme = "README.md"
6-
requires-python = ">=3.12"
6+
requires-python = ">=3.10"
77
dependencies = [
88
"linkchecker>=10.5.0",
99
]

0 commit comments

Comments
 (0)