mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
fix: disable stdio buffering so log coloring happens normally
This commit is contained in:
@@ -26,9 +26,10 @@ func CommandDefault(appName string, num int64, process string, tail, quiet bool)
|
||||
n := strconv.FormatInt(num, 10)
|
||||
|
||||
_, err := common.CallPlugnTrigger(common.PlugnTriggerInput{
|
||||
Args: []string{s, appName, process, t, q, n},
|
||||
StreamStdio: true,
|
||||
Trigger: "scheduler-logs",
|
||||
Args: []string{s, appName, process, t, q, n},
|
||||
DisableStdioBuffer: true,
|
||||
StreamStdio: true,
|
||||
Trigger: "scheduler-logs",
|
||||
})
|
||||
return err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user