(value float64, legacyTimeoutField bool)
| 1652 | task, err := t.backgroundManager.StartBackgroundWithOptionalTimeoutArgv(command, description, argv, cwd, timeoutPtr) |
| 1653 | if err != nil { |
| 1654 | return fmt.Sprintf("Could not start background task: %s\nCurrent active tasks: %d", err, t.backgroundManager.ActiveCount()), nil |
| 1655 | } |
| 1656 | display := description |
| 1657 | if display == "" { |
| 1658 | display = command |
| 1659 | display = firstChars(display, 80) |
| 1660 | } |
| 1661 | return fmt.Sprintf( |
| 1662 | "Command launched in background.\nTask ID: %s\nDescription: %s\n\nOutput file: %s\nError file: %s\n\nUse read_file to check the output file for results.", |
no outgoing calls
no test coverage detected