You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by sj...@apache.org on 2021/05/12 14:11:34 UTC

[flink] branch release-1.13 updated: [FLINK-22628][docs] Update state_processor_api.md

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

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


The following commit(s) were added to refs/heads/release-1.13 by this push:
     new c32022b  [FLINK-22628][docs] Update state_processor_api.md
c32022b is described below

commit c32022bd1b0de8c4d14168558add86aeb0c62d6e
Author: yangqu <qu...@126.com>
AuthorDate: Tue May 11 17:53:23 2021 +0800

    [FLINK-22628][docs] Update state_processor_api.md
    
    This closes #15892
---
 docs/content.zh/docs/libs/state_processor_api.md | 2 +-
 docs/content/docs/libs/state_processor_api.md    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/content.zh/docs/libs/state_processor_api.md b/docs/content.zh/docs/libs/state_processor_api.md
index 37e1a59..1db31e8 100644
--- a/docs/content.zh/docs/libs/state_processor_api.md
+++ b/docs/content.zh/docs/libs/state_processor_api.md
@@ -219,7 +219,7 @@ public class ReaderFunction extends KeyedStateReaderFunction<Integer, KeyedState
 
 Along with reading registered state values, each key has access to a `Context` with metadata such as registered event time and processing time timers.
 
-{% panel **Note:** When using a `KeyedStateReaderFunction`, all state descriptors must be registered eagerly inside of open. Any attempt to call a `RuntimeContext#get*State` will result in a `RuntimeException`. %}
+**Note:** When using a `KeyedStateReaderFunction`, all state descriptors must be registered eagerly inside of open. Any attempt to call a `RuntimeContext#get*State` will result in a `RuntimeException`.
 
 ### Window State
 
diff --git a/docs/content/docs/libs/state_processor_api.md b/docs/content/docs/libs/state_processor_api.md
index 751e833..b1adc14 100644
--- a/docs/content/docs/libs/state_processor_api.md
+++ b/docs/content/docs/libs/state_processor_api.md
@@ -219,7 +219,7 @@ public class ReaderFunction extends KeyedStateReaderFunction<Integer, KeyedState
 
 Along with reading registered state values, each key has access to a `Context` with metadata such as registered event time and processing time timers.
 
-{% panel **Note:** When using a `KeyedStateReaderFunction`, all state descriptors must be registered eagerly inside of open. Any attempt to call a `RuntimeContext#get*State` will result in a `RuntimeException`. %}
+**Note:** When using a `KeyedStateReaderFunction`, all state descriptors must be registered eagerly inside of open. Any attempt to call a `RuntimeContext#get*State` will result in a `RuntimeException`.
 
 ### Window State