Skip to content

Commit d68c352

Browse files
authored
Merge pull request #10 from TeaEntityLab/alert-autofix-11
Potential fix for code scanning alert no. 5: Clear-text logging of sensitive information
2 parents 61a763a + 25fb232 commit d68c352

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

teaagent/cli/_handlers/_mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def mcp_serve_command(args: argparse.Namespace) -> int:
2424
rotation_window_seconds=args.oauth_rotation_window,
2525
)
2626
if error:
27-
print(error, file=sys.stderr)
27+
print('Invalid OAuth key ring configuration.', file=sys.stderr)
2828
return 1
2929
elif args.oauth_active_kid:
3030
print(

0 commit comments

Comments
 (0)