Antonio-RiveroMartnez commented on code in PR #36038:
URL: https://github.com/apache/superset/pull/36038#discussion_r2513615712
##########
superset/mcp_service/__main__.py:
##########
@@ -123,7 +123,10 @@ def main() -> None:
if transport == "streamable-http":
host = os.environ.get("FASTMCP_HOST", "127.0.0.1")
port = int(os.environ.get("FASTMCP_PORT", "5008"))
- mcp.run(transport=transport, host=host, port=port)
+ stateless = (
+ os.environ.get("FASTMCP_STATELESS_HTTP", "true").lower() ==
"true"
Review Comment:
Should this be a config like others we have and access it via flask configs?
--
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]