8000 Align to use virtual threads by wyhasany · Pull Request #540 · optimizely/java-sdk · GitHub
[go: up one dir, main page]

Skip to content

Align to use virtual threads #540

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

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update core-httpclient-impl/src/main/java/com/optimizely/ab/NamedThre…
…adFactory.java

Co-authored-by: Jae Kim <45045038+jaeopt@users.noreply.github.com>
  • Loading branch information
wyhasany and jaeopt authored Apr 3, 2024
commit 002bc92f272f9d598c46a388e91a104e7cf7f248
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class NamedThreadFactory implements ThreadFactory {
* @param daemon whether the threads created should be {@link Thread#daemon}s or not
*/
public NamedThreadFactory(String nameFormat, boolean daemon) {
this(nameFormat, daemon, Executors.defaultThreadFactory());
this(nameFormat, daemon, null);
}

/**
Expand Down
0