You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// fetch all direct connections and their resources; each connection will be treated the same as a
// CCloud environment (connection ID and environment ID are the same)
constdirectEnvs=awaitgetDirectResources();
logger.debug(`got ${directEnvs.length} direct environment(s) from GQL query`);
returndirectEnvs;
}
After we make the GraphQL query, we can look up the stored connection (including formConnectionType and groupId):
if there's a groupId, add to the map and then make a container for it to display
if there's no groupId, display it on its own
The text was updated successfully, but these errors were encountered:
shouples
changed the title
Create map of groupId to CustomConnectionSpec when loading connections
Create map of groupId to CustomConnectionSpec when loading connections before displaying in the Resources view
Feb 7, 2025
Could be handled here with group-level
ContainerTreeItem<DirectEnvironment>
:vscode/src/viewProviders/resources.ts
Lines 570 to 576 in a35be57
After we make the GraphQL query, we can look up the stored connection (including
formConnectionType
andgroupId
):groupId
, add to the map and then make a container for it to displaygroupId
, display it on its ownThe text was updated successfully, but these errors were encountered: