codeant-ai-for-open-source[bot] commented on code in PR #41843:
URL: https://github.com/apache/superset/pull/41843#discussion_r3533281812


##########
tests/unit_tests/security/test_permission_instructions_link.py:
##########
@@ -0,0 +1,133 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+"""Unit tests for templated PERMISSION_INSTRUCTIONS_LINK rendering."""
+
+from unittest.mock import MagicMock, patch
+
+from superset.security.manager import (
+    _render_permission_instructions_link,
+    SupersetSecurityManager,
+)
+
+MANAGER = "superset.security.manager"
+
+
+def _render(template, *, username="alice", anonymous=False, **kwargs):

Review Comment:
   **Suggestion:** Add explicit type annotations to this helper function’s 
parameters and return type. [custom_rule]
   
   **Severity Level:** Minor ⚠️
   <details>
   <summary><b>Why it matters? πŸ€” </b></summary>
   
   This is new Python code and the helper function omits type hints on its 
parameters and return type, which violates the required Python typing rule.
   </details>
   
   [![Fix in 
Cursor](https://new-codeant-butcket.s3.us-west-1.amazonaws.com/badges/fix-in-cursor-flat.svg)](https://app.codeant.ai/fix-in-ide?tool=cursor&prompt_id=3d81bdf36a85474f926b97671e5911fe&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
 [![Fix in VSCode 
Claude](https://new-codeant-butcket.s3.us-west-1.amazonaws.com/badges/fix-in-vscode-claude-flat.svg)](https://app.codeant.ai/fix-in-ide?tool=vscode-claude&prompt_id=3d81bdf36a85474f926b97671e5911fe&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
   
   *(Use Cmd/Ctrl + Click for best experience)*
   <details>
   <summary><b>Prompt for AI Agent πŸ€– </b></summary>
   
   ```mdx
   This is a comment left during a code review.
   
   **Path:** tests/unit_tests/security/test_permission_instructions_link.py
   **Line:** 30:30
   **Comment:**
        *Custom Rule: Add explicit type annotations to this helper function’s 
parameters and return type.
   
   Validate the correctness of the flagged issue. If correct, How can I resolve 
this? If you propose a fix, implement it and please make it concise.
   Once fix is implemented, also check other comments on the same PR, and ask 
user if the user wants to fix the rest of the comments as well. if said yes, 
then fetch all the comments validate the correctness and implement a minimal fix
   ```
   </details>
   <a 
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F41843&comment_hash=dac36a077c44cc8f4176a1b4f7bf2b5ac7e24959a680838ce1f91efd192dafad&reaction=like'>πŸ‘</a>
 | <a 
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F41843&comment_hash=dac36a077c44cc8f4176a1b4f7bf2b5ac7e24959a680838ce1f91efd192dafad&reaction=dislike'>πŸ‘Ž</a>



##########
tests/unit_tests/security/test_permission_instructions_link.py:
##########
@@ -0,0 +1,133 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+"""Unit tests for templated PERMISSION_INSTRUCTIONS_LINK rendering."""
+
+from unittest.mock import MagicMock, patch
+
+from superset.security.manager import (
+    _render_permission_instructions_link,
+    SupersetSecurityManager,
+)
+
+MANAGER = "superset.security.manager"
+
+
+def _render(template, *, username="alice", anonymous=False, **kwargs):
+    with (
+        patch(
+            f"{MANAGER}.get_conf",
+            return_value={"PERMISSION_INSTRUCTIONS_LINK": template},
+        ),
+        patch(f"{MANAGER}.g") as g_mock,
+    ):
+        g_mock.user.is_anonymous = anonymous
+        g_mock.user.username = username
+        return _render_permission_instructions_link(**kwargs)
+
+
+def test_empty_or_unset_link_returns_none():

Review Comment:
   **Suggestion:** Add a return type hint to this test function signature (for 
example, an explicit None return type). [custom_rule]
   
   **Severity Level:** Minor ⚠️
   <details>
   <summary><b>Why it matters? πŸ€” </b></summary>
   
   This new test function has no return type annotation, so it violates the 
rule requiring type hints on new or modified Python functions.
   </details>
   
   [![Fix in 
Cursor](https://new-codeant-butcket.s3.us-west-1.amazonaws.com/badges/fix-in-cursor-flat.svg)](https://app.codeant.ai/fix-in-ide?tool=cursor&prompt_id=bd1bc6fd81754d2f9816b07b76a6fda4&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
 [![Fix in VSCode 
Claude](https://new-codeant-butcket.s3.us-west-1.amazonaws.com/badges/fix-in-vscode-claude-flat.svg)](https://app.codeant.ai/fix-in-ide?tool=vscode-claude&prompt_id=bd1bc6fd81754d2f9816b07b76a6fda4&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
   
   *(Use Cmd/Ctrl + Click for best experience)*
   <details>
   <summary><b>Prompt for AI Agent πŸ€– </b></summary>
   
   ```mdx
   This is a comment left during a code review.
   
   **Path:** tests/unit_tests/security/test_permission_instructions_link.py
   **Line:** 43:43
   **Comment:**
        *Custom Rule: Add a return type hint to this test function signature 
(for example, an explicit None return type).
   
   Validate the correctness of the flagged issue. If correct, How can I resolve 
this? If you propose a fix, implement it and please make it concise.
   Once fix is implemented, also check other comments on the same PR, and ask 
user if the user wants to fix the rest of the comments as well. if said yes, 
then fetch all the comments validate the correctness and implement a minimal fix
   ```
   </details>
   <a 
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F41843&comment_hash=acc33e503d2a881b617a8d718dbbedcab5fa74dcf02fd452265508d2cc053ed6&reaction=like'>πŸ‘</a>
 | <a 
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F41843&comment_hash=acc33e503d2a881b617a8d718dbbedcab5fa74dcf02fd452265508d2cc053ed6&reaction=dislike'>πŸ‘Ž</a>



##########
tests/unit_tests/security/test_permission_instructions_link.py:
##########
@@ -0,0 +1,133 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+"""Unit tests for templated PERMISSION_INSTRUCTIONS_LINK rendering."""
+
+from unittest.mock import MagicMock, patch
+
+from superset.security.manager import (
+    _render_permission_instructions_link,
+    SupersetSecurityManager,
+)
+
+MANAGER = "superset.security.manager"
+
+
+def _render(template, *, username="alice", anonymous=False, **kwargs):
+    with (
+        patch(
+            f"{MANAGER}.get_conf",
+            return_value={"PERMISSION_INSTRUCTIONS_LINK": template},
+        ),
+        patch(f"{MANAGER}.g") as g_mock,
+    ):
+        g_mock.user.is_anonymous = anonymous
+        g_mock.user.username = username
+        return _render_permission_instructions_link(**kwargs)
+
+
+def test_empty_or_unset_link_returns_none():
+    assert _render("") is None
+    assert _render(None) is None
+
+
+def test_plain_link_without_placeholders_is_unchanged():
+    assert _render("https://wiki.example.com/data-access";) == (
+        "https://wiki.example.com/data-access";
+    )
+
+
+def test_datasource_placeholders_are_filled_and_url_encoded():
+    out = _render(
+        "https://acme.example.com/req?id={datasource_id}";
+        "&name={datasource_name}&u={username}",
+        datasource_id="12",
+        datasource_name="Quarterly Sales",
+    )
+    # space in the dataset name is URL-encoded; username injected from g.user
+    assert out == (
+        "https://acme.example.com/req?id=12&name=Quarterly%20Sales&u=alice";
+    )
+
+
+def test_table_names_filled_and_encoded():
+    out = _render(
+        "https://acme.example.com/req?tables={table_names}";,
+        table_names="public.sales,public.users",
+    )
+    assert out == (
+        "https://acme.example.com/req?tables=public.sales%2Cpublic.users";
+    )
+
+
+def test_anonymous_user_renders_empty_username():
+    out = _render(
+        "https://acme.example.com/req?u={username}";,
+        anonymous=True,
+    )
+    assert out == "https://acme.example.com/req?u=";
+
+
+def test_unreferenced_placeholders_left_untouched():
+    # datasource link doesn't supply table_names; that token stays literal
+    out = _render(
+        "https://acme.example.com/req?id={datasource_id}&t={table_names}";,
+        datasource_id="9",
+    )
+    assert out == "https://acme.example.com/req?id=9&t=";
+
+
+def test_get_datasource_access_link_pulls_from_datasource_data():
+    ds = MagicMock()
+    ds.data = {"id": 12, "name": "Quarterly Sales"}
+    with (
+        patch(
+            f"{MANAGER}.get_conf",
+            return_value={
+                "PERMISSION_INSTRUCTIONS_LINK": (
+                    "https://acme.example.com/req?id={datasource_id}";
+                    "&name={datasource_name}"
+                )
+            },
+        ),
+        patch(f"{MANAGER}.g") as g_mock,
+    ):
+        g_mock.user.is_anonymous = False
+        g_mock.user.username = "alice"
+        out = SupersetSecurityManager.get_datasource_access_link(ds)
+    assert out == "https://acme.example.com/req?id=12&name=Quarterly%20Sales";
+
+
+def test_get_table_access_link_joins_table_names():

Review Comment:
   **Suggestion:** Add an explicit return type annotation to this test function 
definition. [custom_rule]
   
   **Severity Level:** Minor ⚠️
   <details>
   <summary><b>Why it matters? πŸ€” </b></summary>
   
   This added test function lacks any return type hint, which violates the 
custom rule requiring type annotations for new Python code.
   </details>
   
   [![Fix in 
Cursor](https://new-codeant-butcket.s3.us-west-1.amazonaws.com/badges/fix-in-cursor-flat.svg)](https://app.codeant.ai/fix-in-ide?tool=cursor&prompt_id=e8ac6361d8ac4c7ba04cbac87b098c89&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
 [![Fix in VSCode 
Claude](https://new-codeant-butcket.s3.us-west-1.amazonaws.com/badges/fix-in-vscode-claude-flat.svg)](https://app.codeant.ai/fix-in-ide?tool=vscode-claude&prompt_id=e8ac6361d8ac4c7ba04cbac87b098c89&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
   
   *(Use Cmd/Ctrl + Click for best experience)*
   <details>
   <summary><b>Prompt for AI Agent πŸ€– </b></summary>
   
   ```mdx
   This is a comment left during a code review.
   
   **Path:** tests/unit_tests/security/test_permission_instructions_link.py
   **Line:** 115:115
   **Comment:**
        *Custom Rule: Add an explicit return type annotation to this test 
function definition.
   
   Validate the correctness of the flagged issue. If correct, How can I resolve 
this? If you propose a fix, implement it and please make it concise.
   Once fix is implemented, also check other comments on the same PR, and ask 
user if the user wants to fix the rest of the comments as well. if said yes, 
then fetch all the comments validate the correctness and implement a minimal fix
   ```
   </details>
   <a 
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F41843&comment_hash=eb972ee0b96cab3259e0f71b60c94c1c6996f3f8d03c051dd57bae4cdbe5edff&reaction=like'>πŸ‘</a>
 | <a 
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F41843&comment_hash=eb972ee0b96cab3259e0f71b60c94c1c6996f3f8d03c051dd57bae4cdbe5edff&reaction=dislike'>πŸ‘Ž</a>



##########
tests/unit_tests/security/test_permission_instructions_link.py:
##########
@@ -0,0 +1,133 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+"""Unit tests for templated PERMISSION_INSTRUCTIONS_LINK rendering."""
+
+from unittest.mock import MagicMock, patch
+
+from superset.security.manager import (
+    _render_permission_instructions_link,
+    SupersetSecurityManager,
+)
+
+MANAGER = "superset.security.manager"
+
+
+def _render(template, *, username="alice", anonymous=False, **kwargs):
+    with (
+        patch(
+            f"{MANAGER}.get_conf",
+            return_value={"PERMISSION_INSTRUCTIONS_LINK": template},
+        ),
+        patch(f"{MANAGER}.g") as g_mock,
+    ):
+        g_mock.user.is_anonymous = anonymous
+        g_mock.user.username = username
+        return _render_permission_instructions_link(**kwargs)
+
+
+def test_empty_or_unset_link_returns_none():
+    assert _render("") is None
+    assert _render(None) is None
+
+
+def test_plain_link_without_placeholders_is_unchanged():

Review Comment:
   **Suggestion:** Add a return type annotation to this test function 
declaration. [custom_rule]
   
   **Severity Level:** Minor ⚠️
   <details>
   <summary><b>Why it matters? πŸ€” </b></summary>
   
   This newly added Python test function omits an explicit return type hint, 
which is a direct violation of the typing rule.
   </details>
   
   [![Fix in 
Cursor](https://new-codeant-butcket.s3.us-west-1.amazonaws.com/badges/fix-in-cursor-flat.svg)](https://app.codeant.ai/fix-in-ide?tool=cursor&prompt_id=b5f804ad1e114824bf0c6d76ed4ea278&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
 [![Fix in VSCode 
Claude](https://new-codeant-butcket.s3.us-west-1.amazonaws.com/badges/fix-in-vscode-claude-flat.svg)](https://app.codeant.ai/fix-in-ide?tool=vscode-claude&prompt_id=b5f804ad1e114824bf0c6d76ed4ea278&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
   
   *(Use Cmd/Ctrl + Click for best experience)*
   <details>
   <summary><b>Prompt for AI Agent πŸ€– </b></summary>
   
   ```mdx
   This is a comment left during a code review.
   
   **Path:** tests/unit_tests/security/test_permission_instructions_link.py
   **Line:** 48:48
   **Comment:**
        *Custom Rule: Add a return type annotation to this test function 
declaration.
   
   Validate the correctness of the flagged issue. If correct, How can I resolve 
this? If you propose a fix, implement it and please make it concise.
   Once fix is implemented, also check other comments on the same PR, and ask 
user if the user wants to fix the rest of the comments as well. if said yes, 
then fetch all the comments validate the correctness and implement a minimal fix
   ```
   </details>
   <a 
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F41843&comment_hash=05282ddc4d73bae4d7e3add40a77cc9c3d8ca31b7c77ef70251a3754e307ae1d&reaction=like'>πŸ‘</a>
 | <a 
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F41843&comment_hash=05282ddc4d73bae4d7e3add40a77cc9c3d8ca31b7c77ef70251a3754e307ae1d&reaction=dislike'>πŸ‘Ž</a>



##########
tests/unit_tests/security/test_permission_instructions_link.py:
##########
@@ -0,0 +1,133 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+"""Unit tests for templated PERMISSION_INSTRUCTIONS_LINK rendering."""
+
+from unittest.mock import MagicMock, patch
+
+from superset.security.manager import (
+    _render_permission_instructions_link,
+    SupersetSecurityManager,
+)
+
+MANAGER = "superset.security.manager"
+
+
+def _render(template, *, username="alice", anonymous=False, **kwargs):
+    with (
+        patch(
+            f"{MANAGER}.get_conf",
+            return_value={"PERMISSION_INSTRUCTIONS_LINK": template},
+        ),
+        patch(f"{MANAGER}.g") as g_mock,
+    ):
+        g_mock.user.is_anonymous = anonymous
+        g_mock.user.username = username
+        return _render_permission_instructions_link(**kwargs)
+
+
+def test_empty_or_unset_link_returns_none():
+    assert _render("") is None
+    assert _render(None) is None
+
+
+def test_plain_link_without_placeholders_is_unchanged():
+    assert _render("https://wiki.example.com/data-access";) == (
+        "https://wiki.example.com/data-access";
+    )
+
+
+def test_datasource_placeholders_are_filled_and_url_encoded():
+    out = _render(
+        "https://acme.example.com/req?id={datasource_id}";
+        "&name={datasource_name}&u={username}",
+        datasource_id="12",
+        datasource_name="Quarterly Sales",
+    )
+    # space in the dataset name is URL-encoded; username injected from g.user
+    assert out == (
+        "https://acme.example.com/req?id=12&name=Quarterly%20Sales&u=alice";
+    )
+
+
+def test_table_names_filled_and_encoded():
+    out = _render(
+        "https://acme.example.com/req?tables={table_names}";,
+        table_names="public.sales,public.users",
+    )
+    assert out == (
+        "https://acme.example.com/req?tables=public.sales%2Cpublic.users";
+    )
+
+
+def test_anonymous_user_renders_empty_username():
+    out = _render(
+        "https://acme.example.com/req?u={username}";,
+        anonymous=True,
+    )
+    assert out == "https://acme.example.com/req?u=";
+
+
+def test_unreferenced_placeholders_left_untouched():
+    # datasource link doesn't supply table_names; that token stays literal
+    out = _render(
+        "https://acme.example.com/req?id={datasource_id}&t={table_names}";,
+        datasource_id="9",
+    )
+    assert out == "https://acme.example.com/req?id=9&t=";
+
+
+def test_get_datasource_access_link_pulls_from_datasource_data():

Review Comment:
   **Suggestion:** Add a return type hint to this test function signature to 
satisfy required typing. [custom_rule]
   
   **Severity Level:** Minor ⚠️
   <details>
   <summary><b>Why it matters? πŸ€” </b></summary>
   
   This new test function is missing a return type annotation, so it matches 
the rule violation for untyped Python functions.
   </details>
   
   [![Fix in 
Cursor](https://new-codeant-butcket.s3.us-west-1.amazonaws.com/badges/fix-in-cursor-flat.svg)](https://app.codeant.ai/fix-in-ide?tool=cursor&prompt_id=8a8f3b691d8a4d88ae65773d4366c661&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
 [![Fix in VSCode 
Claude](https://new-codeant-butcket.s3.us-west-1.amazonaws.com/badges/fix-in-vscode-claude-flat.svg)](https://app.codeant.ai/fix-in-ide?tool=vscode-claude&prompt_id=8a8f3b691d8a4d88ae65773d4366c661&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
   
   *(Use Cmd/Ctrl + Click for best experience)*
   <details>
   <summary><b>Prompt for AI Agent πŸ€– </b></summary>
   
   ```mdx
   This is a comment left during a code review.
   
   **Path:** tests/unit_tests/security/test_permission_instructions_link.py
   **Line:** 94:94
   **Comment:**
        *Custom Rule: Add a return type hint to this test function signature to 
satisfy required typing.
   
   Validate the correctness of the flagged issue. If correct, How can I resolve 
this? If you propose a fix, implement it and please make it concise.
   Once fix is implemented, also check other comments on the same PR, and ask 
user if the user wants to fix the rest of the comments as well. if said yes, 
then fetch all the comments validate the correctness and implement a minimal fix
   ```
   </details>
   <a 
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F41843&comment_hash=ec9e1a4ade659dff4d351f25fbb6e5b9f7041e08930d5147f20ef5ce60104889&reaction=like'>πŸ‘</a>
 | <a 
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F41843&comment_hash=ec9e1a4ade659dff4d351f25fbb6e5b9f7041e08930d5147f20ef5ce60104889&reaction=dislike'>πŸ‘Ž</a>



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to