Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Terminal Task Tab Status not working anymore #149905

Closed
JohnDoe2991 opened this issue May 19, 2022 · 0 comments · Fixed by #149976
Closed

Terminal Task Tab Status not working anymore #149905

JohnDoe2991 opened this issue May 19, 2022 · 0 comments · Fixed by #149976
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug insiders-released Patch has been released in VS Code Insiders regression Something that used to work is now broken tasks Task system issues terminal-tabs verified Verification succeeded
Milestone

Comments

@JohnDoe2991
Copy link

Does this issue occur when all extensions are disabled?: Yes

  • VS Code Version: 1.67.2
  • OS Version: Windows 10 21H2

Tasks in the terminal tab don't show "running" or "error" indicator anymore, which got introduced here: #121659
It does not work within Windows/Powershell and WSL2/bash.

Steps to Reproduce:

  1. Add simple tasks.json
{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "sleep 2 seconds",
            "type": "shell",
            "command": "sleep 2",
            "group": "none",
            "problemMatcher": []
        },
        {
            "label": "sleep 2 seconds and fail",
            "type": "shell",
            "command": "sleep 2; exit 1",
            "group": "none",
            "problemMatcher": []
        },
    ]
}
  1. run "sleep 2 seconds", on first run there is the "running" indicator followed by the "check" indicator
  2. run "sleep 2 seconds" again, no "running" indicator
  3. run "sleep 2 seconds and fail", no "running" indicator, "check" indicator disapears, no "error" indicator

See also this gif:
vscode indicator v1 67 2

I've also tested older versions:

  • 1.63.2
    • "running" indicator working correctly
    • "error" indicator not working
    • vscode indicator v1 63 2
  • 1.58.2
    • everything is working as expected
    • vscode indicator v1 58 2
@meganrogge meganrogge added this to the May 2022 milestone May 19, 2022
@meganrogge meganrogge added bug Issue identified by VS Code Team member as probable bug tasks Task system issues terminal-tabs regression Something that used to work is now broken labels May 19, 2022
@VSCodeTriageBot VSCodeTriageBot added unreleased Patch has not yet been released in VS Code Insiders insiders-released Patch has been released in VS Code Insiders and removed unreleased Patch has not yet been released in VS Code Insiders labels May 20, 2022
@joyceerhl joyceerhl added the verified Verification succeeded label Jun 2, 2022
@github-actions github-actions bot locked and limited conversation to collaborators Jul 4, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Issue identified by VS Code Team member as probable bug insiders-released Patch has been released in VS Code Insiders regression Something that used to work is now broken tasks Task system issues terminal-tabs verified Verification succeeded
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants