Skip to content

Commit

Permalink
[FLINK-21581][core] Remove @PublicEvolving from RuntimeContext.getJobID
Browse files Browse the repository at this point in the history
  • Loading branch information
rkhachatryan committed Mar 25, 2021
1 parent c916622 commit 08616ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion flink-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,10 @@ under the License.
<!-- it was decided to remove the fold opperations in 1.12 -->
<exclude>org.apache.flink.api.common.functions.FoldFunction</exclude>
<exclude>org.apache.flink.api.common.functions.RichFoldFunction</exclude>
</excludes>

<!-- added method to interface in 1.13 -->
<exclude>org.apache.flink.api.common.functions.RuntimeContext#getJobId()</exclude>
</excludes>
</parameter>
</configuration>
</plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ public interface RuntimeContext {
* standalone collection executor). Note that Job ID can change in particular upon manual
* restart. The returned ID should NOT be used for any job management tasks.
*/
@PublicEvolving
Optional<JobID> getJobId();

/**
Expand Down

0 comments on commit 08616ac

Please sign in to comment.