From 45636e5af4ce82843f5584c6f4ae23800c5cdcf4 Mon Sep 17 00:00:00 2001 From: Enno <458526+ennru@users.noreply.github.com> Date: Wed, 11 Mar 2020 15:56:22 +0100 Subject: [PATCH] Docs: use https links (#28713) --- akka-docs/src/main/paradox/persistence.md | 4 ++-- akka-docs/src/main/paradox/stream/stream-io.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/akka-docs/src/main/paradox/persistence.md b/akka-docs/src/main/paradox/persistence.md index a2ddb362f2..72e7d126e2 100644 --- a/akka-docs/src/main/paradox/persistence.md +++ b/akka-docs/src/main/paradox/persistence.md @@ -38,10 +38,10 @@ case of sender and receiver JVM crashes. * `AsyncWriteJournal`: A journal stores the sequence of messages sent to a persistent actor. An application can control which messages are journaled and which are received by the persistent actor without being journaled. Journal maintains `highestSequenceNr` that is increased on each message. The storage backend of a journal is pluggable. The persistence extension comes with a "leveldb" journal plugin, which writes to the local filesystem. -Replicated journals are available as [Community plugins](http://akka.io/community/). +Replicated journals are available as [Community plugins](https://akka.io/community/). * *Snapshot store*: A snapshot store persists snapshots of a persistent actor's state. Snapshots are used for optimizing recovery times. The storage backend of a snapshot store is pluggable. -The persistence extension comes with a "local" snapshot storage plugin, which writes to the local filesystem. Replicated snapshot stores are available as [Community plugins](http://akka.io/community/) +The persistence extension comes with a "local" snapshot storage plugin, which writes to the local filesystem. Replicated snapshot stores are available as [Community plugins](https://akka.io/community/) * *Event sourcing*. Based on the building blocks described above, Akka persistence provides abstractions for the development of event sourced applications (see section @ref:[Event sourcing](typed/persistence.md#event-sourcing-concepts)). diff --git a/akka-docs/src/main/paradox/stream/stream-io.md b/akka-docs/src/main/paradox/stream/stream-io.md index 3ff74978e7..8032611783 100644 --- a/akka-docs/src/main/paradox/stream/stream-io.md +++ b/akka-docs/src/main/paradox/stream/stream-io.md @@ -132,7 +132,7 @@ Or a length-field can be used to build a framing protocol. There is a bidi implementing this protocol provided by `Framing.simpleFramingProtocol`, see @scala[[ScalaDoc](https://doc.akka.io/api/akka/current/akka/stream/scaladsl/Framing$.html)] -@java[[Javadoc](http://doc.akka.io/japi/akka/current/akka/stream/javadsl/Framing.html#simpleFramingProtocol-int-)] +@java[[Javadoc](https://doc.akka.io/japi/akka/current/akka/stream/javadsl/Framing.html#simpleFramingProtocol-int-)] for more information. @scala[[JsonFraming](https://doc.akka.io/api/akka/current/akka/stream/scaladsl/JsonFraming$.html)]@java[[JsonFraming](https://doc.akka.io/japi/akka/current/akka/stream/javadsl/JsonFraming.html#objectScanner-int-)] separates valid JSON objects from incoming `ByteString` objects: