Skip to content

Commit

Permalink
docs: link fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ennru committed Nov 26, 2024
1 parent a639151 commit 443bcc1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ will be able to add and remove items to a cart and finally check it out.

We will build the cart as an Event Sourced entity, if you are unfamiliar with Event Sourcing, refer to the
@extref[Event Sourcing section in the Akka guide](akka-guide:concepts/event-sourcing.html) for an explanation.
The [Event Sourcing with Akka video](https://akka.io/blog/news/2020/01/07/akka-event-sourcing-video) is also a good starting point for learning Event Sourcing.
The [Event Sourcing with Akka video](https://www.youtube.com/watch?v=xWuOGqmR7ow) is also a good starting point for learning Event Sourcing.

## Implementing an Event Sourced shopping cart

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ using Akka Edge Rust.

We will represent a temperature sensor as an Event Sourced entity. If you are unfamiliar with Event Sourcing, refer to the
@extref[Event Sourcing section in the Akka guide](akka-guide:concepts/event-sourcing.html) for an explanation.
The [Event Sourcing with Akka video](https://akka.io/blog/news/2020/01/07/akka-event-sourcing-video) is also a good starting point for learning about Event Sourcing.
The [Event Sourcing with Akka video](https://www.youtube.com/watch?v=xWuOGqmR7ow) is also a good starting point for learning about Event Sourcing.

## Commands and events

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ for drones using the @extref[Akka Event Sourced Behavior API](akka:typed/persist

We will represent drone as an Event Sourced entity, if you are unfamiliar with Event Sourcing, refer to the
@extref[Event Sourcing section in the Akka guide](akka-guide:concepts/event-sourcing.html) for an explanation.
The [Event Sourcing with Akka video](https://akka.io/blog/news/2020/01/07/akka-event-sourcing-video) is also a good starting point for learning Event Sourcing.
The [Event Sourcing with Akka video](https://www.youtube.com/watch?v=xWuOGqmR7ow) is also a good starting point for learning Event Sourcing.

For drones to communicate their location to the digital twin we will create a gRPC API.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ The charging station is a very limited replicated entity example to keep the gui
conflicts, stations are created, once, in the central cloud and replicated to the edge, updates related to drones currently
charging in the station happen at the edge and are replicated to the cloud. Akka replicated event sourcing provides APIs
for both CRDTs where conflicts are automatically handled by the data structure and business domain level conflict resolution.
For more details about see the @extref[Akka documentation](akka:replicated-eventsourcing.html).
For more details about see the @extref[Akka documentation](akka:typed/replicated-eventsourcing.html).

@@@

Expand Down
2 changes: 2 additions & 0 deletions scripts/link-validator-edge.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ site-link-validator {
ignore-files = []

ignore-prefixes = [
# returns 404 on HEAD requests, but works
"https://crates.io/crates/"
# Fails after a number of requests with "403 Forbidden"
"https://javadoc.io/static/"
# GitHub will block with "429 Too Many Requests"
Expand Down

0 comments on commit 443bcc1

Please sign in to comment.