Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15465008
D21703.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D21703.diff
View Options
diff --git a/scripts/ssh/ssh-connect.php b/scripts/ssh/ssh-connect.php
--- a/scripts/ssh/ssh-connect.php
+++ b/scripts/ssh/ssh-connect.php
@@ -154,6 +154,6 @@
array_unshift($arguments, $pattern);
$err = newv('PhutilExecPassthru', $arguments)
- ->execute();
+ ->resolve();
exit($err);
diff --git a/src/applications/repository/storage/PhabricatorRepository.php b/src/applications/repository/storage/PhabricatorRepository.php
--- a/src/applications/repository/storage/PhabricatorRepository.php
+++ b/src/applications/repository/storage/PhabricatorRepository.php
@@ -499,7 +499,7 @@
public function passthruRemoteCommand($pattern /* , $arg, ... */) {
$args = func_get_args();
- return $this->newRemoteCommandPassthru($args)->execute();
+ return $this->newRemoteCommandPassthru($args)->resolve();
}
private function newRemoteCommandFuture(array $argv) {
@@ -540,7 +540,7 @@
public function passthruLocalCommand($pattern /* , $arg, ... */) {
$args = func_get_args();
- return $this->newLocalCommandPassthru($args)->execute();
+ return $this->newLocalCommandPassthru($args)->resolve();
}
private function newLocalCommandFuture(array $argv) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Apr 3, 1:35 PM (3 d, 3 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7625026
Default Alt Text
D21703.diff (1 KB)
Attached To
Mode
D21703: Use "resolve()", not "execute()", for PhutilExecPassthru callsites in Phabricator
Attached
Detach File
Event Timeline
Log In to Comment