Skip to content

Commit f533e89

Browse files
committed
Don't automatically "un-follow" process output if the process exits
The issue is that the process exit might be recognized before the last bit of output is transferred, resulting in cut off output. Also if the process is backed off and restarted, following should continue, which it did not correctly. Request: MO Change-Id: I8fa46f9a2dc35fe8e3d4021bf8d3f8768ca36f4a
1 parent c15201c commit f533e89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/webapp/src/app/modules/instance/components/process-details/process-details.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
[initialEntry]="getCurrentOutputEntryFetcher()"
121121
[contentFetcher]="getOutputContentFetcher()"
122122
[contentDownloader]="getContentDownloader()"
123-
[follow]="isRunning()"
123+
[follow]="true"
124124
[supportsStdin]="supportsStdin()"
125125
[hasStdin]="hasStdin()"
126126
(inputEvent)="onInputEvent($event)"

0 commit comments

Comments
 (0)