Differential D15711 Diff 37866 src/infrastructure/storage/management/workflow/PhabricatorStorageManagementDumpWorkflow.php
Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/storage/management/workflow/PhabricatorStorageManagementDumpWorkflow.php
| Show All 36 Lines | if ($applied === null) { | ||||
| './bin/storage upgrade')); | './bin/storage upgrade')); | ||||
| return 1; | return 1; | ||||
| } | } | ||||
| $databases = $api->getDatabaseList($patches, true); | $databases = $api->getDatabaseList($patches, true); | ||||
| list($host, $port) = $this->getBareHostAndPort($api->getHost()); | list($host, $port) = $this->getBareHostAndPort($api->getHost()); | ||||
| $has_password = false; | |||||
| $password = $api->getPassword(); | $password = $api->getPassword(); | ||||
| if ($password) { | if ($password) { | ||||
| if (strlen($password->openEnvelope())) { | if (strlen($password->openEnvelope())) { | ||||
| $has_password = true; | $has_password = true; | ||||
| } | } | ||||
| } | } | ||||
| $argv = array(); | $argv = array(); | ||||
| Show All 33 Lines | |||||