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
This error gives no hints on how to solve the issue:
> mix deps.get
Failed to fetch record for'hexpm:acme/my_package' from registry (using cache)
This could be because the package does not exist, it was spelled incorrectly or you don't have permissions to it
We can do a few checks and give a few hints when this happens:
Check in config if there is an authenticated user
Check if user has access to organization
Check if email is verified
Check if package actually exists (list existing packages if it doesn't)
Note that some of these checks can only be performed if we also have a read API key, which is not always the case for example in CI or users who authenticated against organization with mix hex.organization auth.
We may get this error multiple times when fetching dependencies so make sure we only print this once and that it stands out.
We can do similar checks for API errors but let's start with this.
The text was updated successfully, but these errors were encountered:
This error gives no hints on how to solve the issue:
We can do a few checks and give a few hints when this happens:
Note that some of these checks can only be performed if we also have a read API key, which is not always the case for example in CI or users who authenticated against organization with
mix hex.organization auth
.We may get this error multiple times when fetching dependencies so make sure we only print this once and that it stands out.
We can do similar checks for API errors but let's start with this.
The text was updated successfully, but these errors were encountered: