Using Drush terminus with a Pantheon site requires --strict=0 because the db-url option included in our Drush aliases files is not explicitly supported by Drush.
Using strict=0 works, but it subverts error-checking, so if someone makes a typo, for example, they won't get good feedback that could prevent confusion.
Steps To Reproduce:
drush pauth
drush paliases
drush @pantheon.sitename.env cc all # error
drush @pantheon.sitename.evn cc all --strict=0 # success
Using Drush terminus with a Pantheon site requires --strict=0 because the db-url option included in our Drush aliases files is not explicitly supported by Drush.
Using strict=0 works, but it subverts error-checking, so if someone makes a typo, for example, they won't get good feedback that could prevent confusion.
Steps To Reproduce:
drush pauth drush paliases drush @pantheon.sitename.env cc all # error drush @pantheon.sitename.evn cc all --strict=0 # success