We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a070ce commit 5fd0852Copy full SHA for 5fd0852
1 file changed
amplifier_module_provider_github_copilot/client.py
@@ -493,7 +493,10 @@ async def create_session(
493
logger.debug("[CLIENT] Permission handler set to approve_all")
494
except (ImportError, AttributeError):
495
# Older SDK versions don't require this or don't have approve_all
496
- pass
+ logger.debug(
497
+ "[CLIENT] PermissionHandler.approve_all not available; "
498
+ "using SDK default permission behavior"
499
+ )
500
501
# Session creation - separated from yield to avoid exception masking
502
try:
0 commit comments