We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15542de commit ef8df7bCopy full SHA for ef8df7b
airbyte_cdk/cli/airbyte_cdk/_secrets.py
@@ -235,7 +235,10 @@ def list_(
235
"""
236
click.echo("Scanning secrets...", err=True)
237
238
- connector_name, _ = resolve_connector_name_and_directory(connector)
+ if connector and isinstance(connector, str) and "/" not in connector and "\\" not in connector:
239
+ connector_name = connector
240
+ else:
241
+ connector_name, _ = resolve_connector_name_and_directory(connector)
242
secrets: list[Secret] = _fetch_secret_handles( # type: ignore
243
connector_name=connector_name,
244
gcp_project_id=gcp_project_id,
0 commit comments