1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 08:52:39 +01:00

Fix an issue where SSH workflows would execute immediately

Summary: rPe397103bf broke this since one of the implementations was `return false;`, not `return true;`.

Auditors: chad
This commit is contained in:
epriestley 2013-12-27 15:18:03 -08:00
parent f5fb3f05dc
commit 9b8c75488b

View file

@ -6,6 +6,10 @@ abstract class PhabricatorSSHWorkflow extends PhabricatorManagementWorkflow {
private $iochannel;
private $errorChannel;
public function isExecutable() {
return false;
}
public function setErrorChannel(PhutilChannel $error_channel) {
$this->errorChannel = $error_channel;
return $this;