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
If a user of pantheon-tools does not have pipe viewer installed when running the pantheon-db-dump command (may need to check other commands) you receive the error: mysqldump: Got errno 0 on write
This is because pipe viewer information is passed to the $PV variable to the dump command: mysqldump --no-autocommit --single-transaction -B --opt --quote-names --user=$mysql_username --host=127.0.0.1 --port=$mysql_port --password=$mysql_password $mysql_database | $PV
Possible solutions:
Check to see if pipe viewer is installed and don't pass pipe viewer data to the command. (maybe prompt the user that if pipe viewer is installed that they would see this data).
Check to see if pipe viewer is installed and fail early with a prompt to install pipe viewer.
If a user of pantheon-tools does not have pipe viewer installed when running the
pantheon-db-dump
command (may need to check other commands) you receive the error:mysqldump: Got errno 0 on write
This is because pipe viewer information is passed to the
$PV
variable to the dump command:mysqldump --no-autocommit --single-transaction -B --opt --quote-names --user=$mysql_username --host=127.0.0.1 --port=$mysql_port --password=$mysql_password $mysql_database | $PV
Possible solutions:
Pipe viewer info: https://www.ivarch.com/programs/pv.shtml
The text was updated successfully, but these errors were encountered: