This is an automated email from the ASF dual-hosted git repository.
Samrat002 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new 0cca58263ae [hotfix][docs] Fix AzureTableConfiguration class name
casing in Azure Table Storage doc (#29044)
0cca58263ae is described below
commit 0cca58263ae70e31c0741b6795adea114de31250
Author: Vaibhav Mashal <[email protected]>
AuthorDate: Mon Aug 31 19:35:22 2026 +0530
[hotfix][docs] Fix AzureTableConfiguration class name casing in Azure Table
Storage doc (#29044)
---
.../docs/connectors/datastream/formats/azure_table_storage.md | 2 +-
docs/content/docs/connectors/datastream/formats/azure_table_storage.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/docs/content.zh/docs/connectors/datastream/formats/azure_table_storage.md
b/docs/content.zh/docs/connectors/datastream/formats/azure_table_storage.md
index 2f05752971c..a15fc8fb645 100644
--- a/docs/content.zh/docs/connectors/datastream/formats/azure_table_storage.md
+++ b/docs/content.zh/docs/connectors/datastream/formats/azure_table_storage.md
@@ -92,7 +92,7 @@ public class AzureTableExample {
HadoopInputFormat<Text, WritableEntity> hdIf = new HadoopInputFormat<Text,
WritableEntity>(new AzureTableInputFormat(), Text.class, WritableEntity.class,
new Job());
// 设置 Account URI,如 https://apacheflink.table.core.windows.net
-
hdIf.getConfiguration().set(azuretableconfiguration.Keys.ACCOUNT_URI.getKey(),
"TODO");
+
hdIf.getConfiguration().set(AzureTableConfiguration.Keys.ACCOUNT_URI.getKey(),
"TODO");
// 设置存储密钥
hdIf.getConfiguration().set(AzureTableConfiguration.Keys.STORAGE_KEY.getKey(),
"TODO");
// 在此处设置表名
diff --git
a/docs/content/docs/connectors/datastream/formats/azure_table_storage.md
b/docs/content/docs/connectors/datastream/formats/azure_table_storage.md
index 2a50fbbc91c..4df04b6bd2a 100644
--- a/docs/content/docs/connectors/datastream/formats/azure_table_storage.md
+++ b/docs/content/docs/connectors/datastream/formats/azure_table_storage.md
@@ -92,7 +92,7 @@ public class AzureTableExample {
HadoopInputFormat<Text, WritableEntity> hdIf = new HadoopInputFormat<Text,
WritableEntity>(new AzureTableInputFormat(), Text.class, WritableEntity.class,
new Job());
// set the Account URI, something like:
https://apacheflink.table.core.windows.net
-
hdIf.getConfiguration().set(azuretableconfiguration.Keys.ACCOUNT_URI.getKey(),
"TODO");
+
hdIf.getConfiguration().set(AzureTableConfiguration.Keys.ACCOUNT_URI.getKey(),
"TODO");
// set the secret storage key here
hdIf.getConfiguration().set(AzureTableConfiguration.Keys.STORAGE_KEY.getKey(),
"TODO");
// set the table name here