Skip to content

Commit

Permalink
AirbyteLib: Show list of actually available connectors (#35018)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Reuter committed Feb 9, 2024
1 parent c8d5927 commit cf244b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airbyte-lib/airbyte_lib/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def get_connector_metadata(name: str) -> ConnectorMetadata:
connector_name=name,
context={
"registry_url": _get_registry_url(),
"available_connectors": sorted(cache.keys()),
"available_connectors": get_available_connectors(),
},
)
return cache[name]
Expand Down

0 comments on commit cf244b6

Please sign in to comment.