[MNG-6977] Use hyphen when creating builder threads (names)

This commit is contained in:
Michael Osipov 2020-08-17 11:43:20 +02:00
parent 9864cdbadc
commit 9120d86573
1 changed files with 2 additions and 2 deletions

View File

@ -34,6 +34,6 @@ public class BuildThreadFactory
public Thread newThread( Runnable r ) public Thread newThread( Runnable r )
{ {
return new Thread( r, String.format( "%s %d", PREFIX, id.getAndIncrement() ) ); return new Thread( r, String.format( "%s-%d", PREFIX, id.getAndIncrement() ) );
} }
} }