-
Notifications
You must be signed in to change notification settings - Fork 28
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
chore: Fix execute not start vt issue. #39
Conversation
override def execute(body: Runnable): Unit = VTFactory.newThread(body) | ||
override def execute(body: Runnable): Unit = | ||
val th = VTFactory.newThread(body) | ||
th.start() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@m8nmueller I forgot to start it, sorry~~
Can you add a test to make sure things work as expected? |
Sorry, I still can't build the snapshot out locally, and a little busy at work. cherry pick if you like. Sorry for missed the |
No worries, I'll add a test onto your branch.
Did you run into problems running |
I'm using Windows 11, so I didn't |
8ec048f
to
7494d8b
Compare
Sorry for the force-push, I wanted to rebase it to the latest upstream main branch |
@natsukagami Thanks I want to learn how to force push to a contributor branch too |
As long as "Maintainers are allowed to edit this pull request." I think regular |
@natsukagami I can't install the github cli, company doesn't allow it. thank you ,just learn something new |
Motivation:
In my last pr, I forgot to start the VT :(
Result:
Fixed :)