Skip to content

Commit f42367d

Browse files
authored
Docs update theme 1.4 (#683)
* docs: update theme 1.4 * docs: update links * docs: Fix link
1 parent 2594336 commit f42367d

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

docs/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ pristine: clean
4141
.PHONY: clean
4242
clean:
4343
rm -rf $(BUILDDIR)/*
44+
rm -f poetry.lock
4445

4546
# Generate output commands
4647
.PHONY: dirhtml

docs/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pyyaml = "6.0"
1010
pygments = "2.11.2"
1111
recommonmark = "0.7.1"
1212
redirects_cli ="~0.1.2"
13-
sphinx-scylladb-theme = "~1.3.1"
13+
sphinx-scylladb-theme = "~1.4.1"
1414
sphinx-sitemap = "2.2.0"
1515
sphinx-autobuild = "2021.3.14"
1616
Sphinx = "4.3.2"

docs/source/SUMMARY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
- [Paged query](queries/paged.md)
2222
- [Lightweight transaction query (LWT)](queries/lwt.md)
2323
- [USE keyspace](queries/usekeyspace.md)
24-
- [Schema agreement](queries/schema_agreement.md)
24+
- [Schema agreement](queries/schema-agreement.md)
2525
- [Query timeouts](queries/timeouts.md)
2626

2727
- [Execution profiles](execution-profiles/execution-profiles.md)
@@ -53,7 +53,7 @@
5353
- [Retry policy configuration](retry-policy/retry-policy.md)
5454
- [Fallthrough retry policy](retry-policy/fallthrough.md)
5555
- [Default retry policy](retry-policy/default.md)
56-
- [Downgrading consistency policy](retry-policy/downgrading_consistency.md)
56+
- [Downgrading consistency policy](retry-policy/downgrading-consistency.md)
5757

5858
- [Speculative execution](speculative-execution/speculative.md)
5959
- [Simple](speculative-execution/simple.md)

docs/source/queries/queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Queries are fully asynchronous - you can run as many of them in parallel as you
3333
batch
3434
paged
3535
usekeyspace
36-
schema_agreement
36+
schema-agreement
3737
lwt
3838
timeouts
3939
```
File renamed without changes.
File renamed without changes.

docs/source/retry-policy/retry-policy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Retry policy can be configured for `Session` or just for a single query.
77
By default there are three retry policies:
88
* [Fallthrough Retry Policy](fallthrough.md) - never retries, returns all errors straight to the user
99
* [Default Retry Policy](default.md) - used by default, might retry if there is a high chance of success
10-
* [Downgrading Consistency Retry Policy](downgrading_consistency.md) - behaves as [Default Retry Policy](default.md), but also,
10+
* [Downgrading Consistency Retry Policy](downgrading-consistency.md) - behaves as [Default Retry Policy](default.md), but also,
1111
in some more cases, it retries **with lower `Consistency`**.
1212

1313
It's possible to implement a custom `Retry Policy` by implementing the traits `RetryPolicy` and `RetrySession`.
@@ -49,6 +49,6 @@ prepared.set_is_idempotent(true);
4949
5050
fallthrough
5151
default
52-
downgrading_consistency
52+
downgrading-consistency
5353
5454
```

0 commit comments

Comments
 (0)