@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix content being missed in the build logs

Summary: This fixes an issue where content would be discarded when the content to append is larger than the chunk size limit.

Test Plan: Tested running a remote command that does `I=0; while true; do echo "$I"; I=$[$I+1]; done` and all of the outputted numbers matched the line numbers in the logs.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley

CC: Korvin, epriestley, aran

Differential Revision: https://secure.phabricator.com/D7537

authored by

James Rhodes and committed by
epriestley
8f52778f f357e159

+1
+1
src/applications/harbormaster/storage/build/HarbormasterBuildLog.php
··· 95 95 $current = substr($current, self::CHUNK_BYTE_LIMIT); 96 96 $this->append($part); 97 97 } 98 + $this->append($current); 98 99 return; 99 100 } 100 101