- Issue created by @apotek
If you install and configure the module, and then try to run `drush fastly:purge:all`, you get:
> Unable to purge/invalidate all site content on Fastly.
This is because the drush command checks the state of the purge credentials:
```
if ($this->state->getPurgeCredentialsState()) {
```
but that state is only set if the purge all command is invoked via the form/UI. So, if that form has never been used, the state is unset and `getPurgeCredentialsState()` returns falsey.
Install Fastly.
Set service id and token (either as environment variable or setting).
Try to run `drush fastly:purge:all`
The solution is for the command to check the purge credentials state, and if it is undefined or missing, call `api-> public function validatePurgeCredentials()` and set the state accordingly and then continue with the command.
Active
4.0
Code