Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

force:package:install --publishwait does not wait for package to become available #160

Closed
jamesmelville opened this issue Aug 28, 2019 · 12 comments
Labels
area:packaging owned by another team The Salesforce CLI team does not own this work but will pass on the information to the correct team.

Comments

@jamesmelville
Copy link

Summary

We have a CI script which creates a new package and then directly installs it to an org. Often, this fails with the error:

ERROR: Encountered errors installing the package!,Installation errors: 
1) Invalid Package, Details: This package is not yet available. Please try again later or contact the package owner. 

This is despite our command using the force:package:install command with --publishwait argument

Steps To Reproduce:

  1. Publish a new package version
  2. Immediately attempt to install this package version in another org using force:package:install --publishwait

Expected result

Package gets installed once it's available to the org.

Actual result

Installation proceeds and then errors:

Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the package install request to complete. Status = IN_PROGRESS
ERROR:  Encountered errors installing the package!,Installation errors: 
1) Invalid Package, Details: This package is not yet available. Please try again later or contact the package owner.

Additional information

This is already logged as a bug W-6015902 but I wanted to add it here to increase visibility and get an update on any fix.

When we run sfdx force:package:install it polls the SubscriberPackageVersion table:
SELECT Id, SubscriberPackageId FROM SubscriberPackageVersion WHERE Id='04t0000000000000000' AND InstallationKey ='null'

whilst displaying the message
Waiting for the Subscriber Package Version ID to be published to the target org.

When a record appears in this table, then the CLI thinks the package is available, and it starts installing:
Waiting for the package install request to complete. Status = IN_PROGRESS

But then fails pretty quickly with
ERROR: Encountered errors installing the package!,Installation errors: 1) Invalid Package, Details: This package is not yet available. Please try again later or contact the package owner.

When this happens, the InstallValidationStatus is normally PACKAGE_UNAVAILABLE. I think the CLI starts installing as soon as it finds a row in the SubscriberPackageVersion table, instead of also checking the status of that row.

I think the --publishwait argument should wait for the InstallValidationStatus to become "NO_ERRORS_DETECTED", and then start installation.

SFDX CLI Version(to find the version of the CLI engine run sfdx --version):
sfdx-cli/7.21.0 linux-x64 node-v12.9.0
› Warning: You acknowledge and agree that the CLI tool may collect usage
› information, user environment, and crash reports for the purposes of
› providing services or functions that are relevant to use of the CLI tool
› and product improvements.
@oclif/plugin-commands 1.2.3 (core)
@oclif/plugin-help 2.2.1 (core)
@oclif/plugin-not-found 1.2.3 (core)
@oclif/plugin-plugins 1.7.8 (core)
@oclif/plugin-update 1.3.9 (core)
@oclif/plugin-warn-if-update-available 1.7.0 (core)
@oclif/plugin-which 1.0.3 (core)
@salesforce/sfdx-trust 3.0.5 (core)
analytics 1.2.1 (core)
generator 1.1.1 (core)
salesforcedx 46.11.0 (core)
├─ force-language-services 46.15.0 (core)
└─ salesforce-alm 46.14.0 (core)

SFDX plugin Version(to find the version of the CLI plugin run sfdx plugins --core)
sfdx-cli 7.21.0 (core)

OS and version:
https://github.com/salestrip/docker-sfdx-cli/blob/master/Dockerfile

@jamesmelville
Copy link
Author

Workaround:
Instead of using --publishwait, implement your own polling mechanism which checks for status NO_ERRORS_DETECTED before you run sfdx force:package:install. Basic sh script requiring sfdx and jq:

WAIT_PACKAGE=true
POLL_LIMIT=30
POLL_COUNT=0
while [ $WAIT_PACKAGE ] && [ $POLL_COUNT -le $POLL_LIMIT ]
do
  sfdx force:data:soql:query --usetoolingapi \
                             --query "SELECT Id, SubscriberPackageId,InstallValidationStatus FROM SubscriberPackageVersion WHERE Id ='$INSTALL_VER'" \
                             --targetusername $TARGET_ORG \
                             --json > /tmp/workspace/packageStatus.json
  if [ $(jq -r '.result.records[0].InstallValidationStatus' /tmp/workspace/packageStatus.json) = "NO_ERRORS_DETECTED" ]
  then
    WAIT_PACKAGE=false
  else
    echo "Package status $(jq -r '.result.records[0].InstallValidationStatus' /tmp/workspace/packageStatus.json)"
    sleep 30
  fi
  POLL_COUNT=$(( POLL_COUNT+1 ))
done

You might see an output like this before the script continues:

Package status null
Package status null
Package status PACKAGE_UNAVAILABLE
Package status PACKAGE_UNAVAILABLE

@clairebianchi clairebianchi added the owned by another team The Salesforce CLI team does not own this work but will pass on the information to the correct team. label Sep 27, 2019
@sfdc-db-gmail
Copy link

@jamesmelville - this is expected to get fixed as a result of another piece of work that we plan to do in Summer '20. Cc @clairebianchi

@sfdc-db-gmail
Copy link

@jamesmelville - i believe this is fixed in v47 of CLI which is part of Winter '20 release. Please let us know if you are still experiencing this issue after Winter '20 rolls out over the next two weeks.

@jamesmelville
Copy link
Author

jamesmelville commented Oct 30, 2019

Hi @sfdc-db-gmail @clairebianchi

We just had this issue reoccur with the latest version of SFDX after we removed our workaround a few weeks ago. Unfortunately we didn't capture the logs, but I've switched log archiving back on in case it happens again. Are you aware of any regressions or is it possible there's a pending status that's been missed in the fix? Output and CLI version below:

$DEPLOY_TIMEOUT is set to 10 minutes and this failed after 2m34s.

sfdx force:package:install --package $INSTALL_VER \
                           --loglevel debug \
                           --noprompt \
                           --publishwait $DEPLOY_TIMEOUT \
                           --securitytype AdminsOnly \
                           --targetusername $TARGET_ORG \
                           --wait $DEPLOY_TIMEOUT
Installing Package Version $INSTALL_VER
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.

Waiting for the package install request to complete. Status = IN_PROGRESS
ERROR:  Encountered errors installing the package!,Installation errors: 
1) Invalid Package, Details: This package is not yet available. Please try again later or contact the package owner.
ERROR running force:package:install:  Installation errors: 
1) Invalid Package, Details: This package is not yet available. Please try again later or contact the package owner.
Exited with code 1
sfdx-cli/7.30.13 linux-x64 node-v13.0.1
 ›   Warning: You acknowledge and agree that the CLI tool may collect usage 
 ›   information, user environment, and crash reports for the purposes of 
 ›   providing services or functions that are relevant to use of the CLI tool 
 ›   and product improvements.
@oclif/plugin-commands 1.2.3 (core)
@oclif/plugin-help 2.2.1 (core)
@oclif/plugin-not-found 1.2.3 (core)
@oclif/plugin-plugins 1.7.8 (core)
@oclif/plugin-update 1.3.9 (core)
@oclif/plugin-warn-if-update-available 1.7.0 (core)
@oclif/plugin-which 1.0.3 (core)
@salesforce/sfdx-trust 3.0.5 (core)
analytics 1.2.2 (core)
generator 1.1.1 (core)
salesforcedx 47.3.7 (core)
├─ salesforcedx-templates 47.3.2 (core)
└─ salesforce-alm 47.6.0 (core)

sfdx-cli 7.30.13 (core)

@clairebianchi
Copy link
Collaborator

@jamesmelville Thank you for letting me know I will circle back with the Packaging PM

@sfdc-db-gmail
Copy link

@jamesmelville - My recommendations are (a) log a case and (b) join our trailblazer community https://sfdc.co/ulp to collaborate on this and other things related to packaging.

@jamesmelville
Copy link
Author

Hi @clairebianchi and @sfdc-db-gmail - thanks for the input.

I'm a little confused now. For us this is an issue that occurs with 1GP managed packages, although I could imagine it affects packages in general. From my investigation above, it seemed to me that the failure was due to the CLI not understanding the documented statuses on the SubscriberPackageVersion object, and not really a bug with the platform.

Is this tracker the wrong place to log this issue, and if so why?

It seems to be a CLI issue, but this has been labelled "owned by another team", why is that?

How is the "Unlocked Packages" group relevant to this?

What is the correct route to logging these issue?

When this issue finally annoyed me enough to report it in February this year, I posted in the SalesforceDX group, which seems like a reasonable place to report it, and the issue was corroborated by another user, but this never got any response from Salesforce.

I also logged a case (21669907), which took 2 months, ~70 comments and multiple calls for me to get a bug logged after multiple attempts by the agent to tell me it was working as designed. Finally to get the bug logged I had to dig into the sfdx logs and work out was going on (as explained above) and describe this to the agent.

I'm generally very reticent to log cases because unless the problem is causing significant pain, dealing with support is a waste of all of our time, and for me posting issues in success rarely elicits helpful responses.

@clairebianchi
Copy link
Collaborator

@jamesmelville I am sorry to hear about your experience with support and our other channels for reporting issues. This repository is supported by the team that owns the CLI engine, we do not build all of the Force commands because we find it is best to have the experts in a given feature build the commands associated with that feature. This is why I passed your issue over the packaging team. I realize this is confusing and we are working internally to make this process better.

This channel also does not have an SLA and often takes a while because I am trying to find the right person/team to take a look at your issue.

I am going to reopen this issue here, so I have more visibility into it and can follow the progress. If you did open a case, please add the case number here and I will follow up with support myself.

@sfdc-db-gmail can you please review @jamesmelville comment above?

@clairebianchi clairebianchi reopened this Nov 5, 2019
@jamesmelville
Copy link
Author

@clairebianchi Thanks for your explanation and for reopening this.
I think we've completed about ~30 installations since the Winter 19 rollout and only one has failed in the manner I described, I think we had about a 50% failure rate when I reported the issue, so thank you for the improvement.
I've had a look at the logs and can see the CLI is querying the InstallValidationStatus. I'll keep an eye out for any further occurrences and let you know, although I'm not sure the log files will give us useful information anyway.

@jamesmelville
Copy link
Author

Hi - this issue occurred again at 2019-12-24T12:34:39.243Z (package version hidden)

#!/bin/sh -eo pipefail
INSTALL_VER=$(jq -r '.result.MetadataPackageVersionId' /tmp/workspace/packageId.json)
echo "Installing Package Version $INSTALL_VER"
sfdx force:package:install --package $INSTALL_VER \
                           --loglevel trace \
                           --noprompt \
                           --publishwait $DEPLOY_TIMEOUT \
                           --securitytype AdminsOnly \
                           --targetusername $TARGET_ORG \
                           --wait $DEPLOY_TIMEOUT
Installing Package Version 04t1r0000000000000
 ›   Warning: sfdx-cli update available from 7.36.0 to 7.37.1.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the Subscriber Package Version ID to be published to the target org.
Waiting for the package install request to complete. Status = IN_PROGRESS
Waiting for the package install request to complete. Status = IN_PROGRESS
Waiting for the package install request to complete. Status = IN_PROGRESS
Waiting for the package install request to complete. Status = IN_PROGRESS
ERROR:  Encountered errors installing the package!,Installation errors: 
1) Invalid Package, Details: This package is not yet available. Please try again later or contact the package owner.
ERROR running force:package:install:  Installation errors: 
1) Invalid Package, Details: This package is not yet available. Please try again later or contact the package owner.

Exited with code exit status 1

Version:

#!/bin/sh -eo pipefail
sfdx --version
sfdx plugins --core
sfdx-cli/7.36.0 linux-x64 node-v13.3.0
 ›   Warning: sfdx-cli update available from 7.36.0 to 7.37.1.
 ›   Warning: You acknowledge and agree that the CLI tool may collect usage 
 ›   information, user environment, and crash reports for the purposes of 
 ›   providing services or functions that are relevant to use of the CLI tool 
 ›   and product improvements.
@oclif/plugin-commands 1.2.3 (core)
@oclif/plugin-help 2.2.2 (core)
@oclif/plugin-not-found 1.2.3 (core)
@oclif/plugin-plugins 1.7.8 (core)
@oclif/plugin-update 1.3.9 (core)
@oclif/plugin-warn-if-update-available 1.7.0 (core)
@oclif/plugin-which 1.0.3 (core)
@salesforce/sfdx-trust 3.0.7 (core)
analytics 1.2.2 (core)
generator 1.1.2 (core)
salesforcedx 47.9.0 (core)
├─ salesforcedx-templates 47.9.0 (core)
└─ salesforce-alm 47.10.0 (core)

sfdx-cli 7.36.0 (core)

From the logs I can see that the SubscriberPackageVersion table was being polled multiple times,
SELECT Id, SubscriberPackageId, InstallValidationStatus FROM SubscriberPackageVersion WHERE Id ='04t1r0000000000000' AND InstallationKey ='null'
and at some point it decided it was ready to continue with installation because it queried some other fields:
SELECT RemoteSiteSettings, CspTrustedSites FROM SubscriberPackageVersion WHERE Id ='04t1r0000000000000' AND InstallationKey ='null'
It then attempted to install and failed with
[\n '\\u001b[1mERROR running force:package:install: \\u001b[22m',\n '\\u001b[31mInstallation errors: \\u001b[39m\\n' +\n '\\u001b[31m1) Invalid Package, Details: This package is not yet available. Please try again later or contact the package owner.\\u001b[39m'\n]

Unfortunately the logs don't include the responses to queries. @clairebianchi would it help for me to redact the log files and post here or can I share directly somewhere? I'm on log level trace which I think is the highest level (fatal doesn't give me much output). We've probably done 30-40 installations (ones which are triggered directly after package creation) since the last time this happened.

@shetzel
Copy link
Contributor

shetzel commented Oct 4, 2023

This is the same issue as #1895 which has been fixed.

@shetzel shetzel closed this as completed Oct 4, 2023
@epavlic-revenue
Copy link

epavlic-revenue commented Mar 11, 2024

I'm seeing the same behaviour on 2.39.6:

60 minutes remaining until timeout. Publish status: Querying Status...[04:47:30.758] TRACE (sf:installPackage): Created 'sf:installPackage' child logger instance
[04:47:30.758] DEBUG (sf:installPackage): Polling for package availability in org. Package ID =
[04:47:30.758] DEBUG (sf:installPackage): Polling frequency (ms): 10000
[04:47:30.758] DEBUG (sf:installPackage): Polling timeout (min): 60
60 minutes remaining until timeout. Publish status: Unavailable for installation
[04:47:31.276] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:47:42.785] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:47:53.226] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
60 minutes remaining until timeout. Publish status: Querying Status... 59 minutes remaining until timeout. Publish status: Unavailable for installation[04:48:03.638] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:48:14.061] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:48:24.527] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:48:34.902] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:48:45.254] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:48:55.642] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
60 minutes remaining until timeout. Publish status: Querying Status... 58 minutes remaining until timeout. Publish status: Unavailable for installation[04:49:06.014] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:49:16.403] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:49:26.805] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:49:37.186] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:49:47.558] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:49:57.930] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
60 minutes remaining until timeout. Publish status: Querying Status... 57 minutes remaining until timeout. Publish status: Unavailable for installation[04:50:08.315] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:50:18.704] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:50:28.894] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:50:39.048] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:50:49.421] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:50:59.577] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
60 minutes remaining until timeout. Publish status: Querying Status... 56 minutes remaining until timeout. Publish status: Unavailable for installation[04:51:09.972] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:51:20.496] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:51:30.947] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:51:41.329] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:51:51.689] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
60 minutes remaining until timeout. Publish status: Querying Status... 55 minutes remaining until timeout. Publish status: Unavailable for installation[04:52:02.034] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:52:12.510] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
[04:52:22.923] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = PACKAGE_UNAVAILABLE
60 minutes remaining until timeout. Publish status: Querying Status... 55 minutes remaining until timeout. Publish status: Available for installation60 minutes remaining until timeout. Publish status: Querying Status... done
[04:52:45.150] DEBUG (sf:installPackage): Waiting for the Subscriber Package Version ID to be published to the target org. Status = NO_ERRORS_DETECTED
Waiting 60 minutes for package install to complete....[04:52:52.651] DEBUG (sf:installPackage): Polling for PackageInstallRequest status. Package ID =
[04:52:52.651] DEBUG (sf:installPackage): Polling frequency (ms): 2000
[04:52:52.651] DEBUG (sf:installPackage): Polling timeout (min): 60
60 minutes remaining until timeout. Install status: IN_PROGRESS
[04:52:52.820] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:52:55.188] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:52:57.548] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:52:59.916] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:02.276] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:04.675] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:07.067] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:09.212] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:11.606] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:13.980] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:16.337] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:18.694] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:21.049] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
Waiting 60 minutes for package install to complete.... 59 minutes remaining until timeout. Install status: IN_PROGRESS[04:53:23.427] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:25.826] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:28.387] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:30.756] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:33.177] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:35.582] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:37.987] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:40.363] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:42.707] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:45.102] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
[04:53:47.495] DEBUG (sf:installPackage): Waiting for the package install request to complete. Status = IN_PROGRESS
Waiting 60 minutes for package install to complete.... 59 minutes remaining until timeout. Install status: ERRORWaiting 60 minutes for package install to complete.... done
Error (1): Encountered errors installing the package! Installation errors:
1) Package() Invalid Package, Details: This package is not yet available. Please try again later or contact the package owner.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:packaging owned by another team The Salesforce CLI team does not own this work but will pass on the information to the correct team.
Projects
None yet
Development

No branches or pull requests

6 participants