We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 309b1db commit d7c39fdCopy full SHA for d7c39fd
1 file changed
src/postgres_mcp/server.py
@@ -677,7 +677,7 @@ async def main():
677
enable_dns_rebinding_protection="*" not in args.allowed_hosts, allowed_hosts=args.allowed_hosts
678
)
679
mcp.settings.transport_security = transport_security
680
- logger.info(f"Allowed hosts: {str(args.allowed_hosts)}")
+ logger.info(f"Allowed hosts: {', '.join(args.allowed_hosts)}")
681
await mcp.run_streamable_http_async()
682
683
0 commit comments