We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d4a88b commit 6354b20Copy full SHA for 6354b20
src/shared/orgListUtil.ts
@@ -235,6 +235,9 @@ export class OrgListUtil {
235
scratchOrgInfo.edition = updatedOrgInfo.Edition;
236
scratchOrgInfo.status = updatedOrgInfo.Status;
237
scratchOrgInfo.expirationDate = updatedOrgInfo.ExpirationDate;
238
+ scratchOrgInfo.isExpired = updatedOrgInfo.Status === 'Deleted';
239
+ // the old toolbelt code always said Unknown. I'd love to get rid of it.
240
+ scratchOrgInfo.connectedStatus = 'Unknown';
241
} else {
242
const logger = await OrgListUtil.retrieveLogger();
243
logger.warn(`Can't find ${scratchOrgInfo.username} in the updated contents`);
0 commit comments