This is an automated email from the ASF dual-hosted git repository.

sjwiesman pushed a commit to branch release-2.2
in repository https://gitbox.apache.org/repos/asf/flink-statefun.git


The following commit(s) were added to refs/heads/release-2.2 by this push:
     new c6c0f66  [hotfix] Fix broken doc links
c6c0f66 is described below

commit c6c0f66df6aa360c6688a6ab26d5f8c4e8197741
Author: Seth Wiesman <[email protected]>
AuthorDate: Thu Nov 5 13:43:31 2020 -0600

    [hotfix] Fix broken doc links
---
 docs/concepts/distributed_architecture.md | 2 +-
 docs/sdk/java.md                          | 4 ++--
 docs/sdk/python.md                        | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/docs/concepts/distributed_architecture.md 
b/docs/concepts/distributed_architecture.md
index 8301e07..e38f1ec 100755
--- a/docs/concepts/distributed_architecture.md
+++ b/docs/concepts/distributed_architecture.md
@@ -74,7 +74,7 @@ Function invocations happen through an HTTP / gRPC protocol 
and go through a ser
 </p>
 
 
-Refer to the documentation on the [Python SDK]({{ site.baseurl 
}}/sdk/python.html) and [remote modules]({{ site.baseurl 
}}/sdk/modules.html#remote-module) for details. 
+Refer to the documentation on the [Python SDK]({{ site.baseurl 
}}/sdk/python.html) and [remote modules]({{ site.baseurl 
}}/sdk/index.html#remote-module) for details. 
 
 #### Co-located Functions
 
diff --git a/docs/sdk/java.md b/docs/sdk/java.md
index 94b357b..da1f3bd 100644
--- a/docs/sdk/java.md
+++ b/docs/sdk/java.md
@@ -27,7 +27,7 @@ under the License.
 Stateful functions are the building blocks of applications; they are atomic 
units of isolation, distribution, and persistence.
 As objects, they encapsulate the state of a single entity (e.g., a specific 
user, device, or session) and encode its behavior.
 Stateful functions can interact with each other, and external systems, through 
message passing.
-The Java SDK is supported as an [embedded module]({{ site.baseurl 
}}/sdk/modules.html#embedded-module).
+The Java SDK is supported as an [embedded module]({{ site.baseurl 
}}/sdk/index.html#embedded-module).
 
 To get started, add the Java SDK as a dependency to your application.
 
@@ -163,7 +163,7 @@ Finally, if a catch-all exists, it will be executed or an 
``IllegalStateExceptio
 ## Function Types and Messaging
 
 In Java, function types are defined as logical pointers composed of a 
namespace and name.
-The type is bound to the implementing class in the [module]({{ site.baseurl 
}}/sdk/modules.html#embedded-module) definition.
+The type is bound to the implementing class in the [module]({{ site.baseurl 
}}/sdk/index.html#embedded-module) definition.
 Below is an example function type for the hello world function.
 
 {% highlight java %}
diff --git a/docs/sdk/python.md b/docs/sdk/python.md
index f334d74..2adab27 100644
--- a/docs/sdk/python.md
+++ b/docs/sdk/python.md
@@ -27,7 +27,7 @@ under the License.
 Stateful functions are the building blocks of applications; they are atomic 
units of isolation, distribution, and persistence.
 As objects, they encapsulate the state of a single entity (e.g., a specific 
user, device, or session) and encode its behavior.
 Stateful functions can interact with each other, and external systems, through 
message passing.
-The Python SDK is supported as a [remote module]({{ 
site.baseurl}}/sdk/modules.html#remote-module).
+The Python SDK is supported as a [remote module]({{ 
site.baseurl}}/sdk/index.html#remote-module).
 
 To get started, add the Python SDK as a dependency to your application.
 
@@ -158,7 +158,7 @@ All stateful functions may contain state by merely storing 
values within the ``c
 The data is always scoped to a specific function type and identifier.
 State values could be absent, ``None``, or a ``google.protobuf.Any``.
 
-<strong>Attention:</strong> [Remote modules]({{ 
site.baseurl}}/sdk/modules.html#remote-module) require that all state values 
are eagerly registered at module.yaml.
+<strong>Attention:</strong> [Remote modules]({{ 
site.baseurl}}/sdk/index.html#remote-module) require that all state values are 
eagerly registered at module.yaml.
 It'll also allow configuring other state properties, such as state expiration. 
Please refer to that page for more details.
     
 Below is a stateful function that greets users based on the number of times 
they have been seen.

Reply via email to