Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91442222
DiffusionSSHGitWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 11, 04:06
Size
686 B
Mime Type
text/x-php
Expires
Wed, Nov 13, 04:06 (2 d)
Engine
blob
Format
Raw Data
Handle
22263718
Attached To
rPH Phabricator
DiffusionSSHGitWorkflow.php
View Options
<?php
abstract
class
DiffusionSSHGitWorkflow
extends
DiffusionSSHWorkflow
{
protected
function
writeError
(
$message
)
{
// Git assumes we'll add our own newlines.
return
parent
::
writeError
(
$message
.
"
\n
"
);
}
protected
function
waitForGitClient
()
{
$io_channel
=
$this
->
getIOChannel
();
// If we don't wait for the client to close the connection, `git` will
// consider it an early abort and fail. Sit around until Git is comfortable
// that it really received all the data.
while
(
$io_channel
->
isOpenForReading
())
{
$io_channel
->
update
();
$this
->
getErrorChannel
()->
flush
();
PhutilChannel
::
waitForAny
(
array
(
$io_channel
));
}
}
}
Event Timeline
Log In to Comment