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

[ui] Containers say "ShuttingDown" in expert view, but they have not started #348

Open
stringhandler opened this issue Jul 1, 2024 · 2 comments

Comments

@stringhandler
Copy link
Contributor

stringhandler commented Jul 1, 2024

Version: 1.9.1

image To reproduce: Start mining, stop before base node starts (press stop while tor is starting) Expected: All containers stop and status returns to "Inactive" Actual: Base node says "ShuttingDown"
@stringhandler
Copy link
Contributor Author

note: There are no containers running, the status stays as "ShuttingDown" permanently

@mmrrnn
Copy link
Contributor

mmrrnn commented Jul 11, 2024

reconfigure method in task.rs. We should do smth like this.

            if self.context.status.get() == "Idle" {
                drop(self.context.update_task_status(TaskStatusValue::Inactive));
            } else {
                drop(self.context.update_task_status(TaskStatusValue::ShuttingDown));
            }

but I'm not able to satisfy rust types...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: 👀 In review
Development

No branches or pull requests

2 participants