Skip to content

Commit

Permalink
Merge pull request #66 from gavinying/hotfix/480434
Browse files Browse the repository at this point in the history
Fix bug 480434 - Multiple bluetooth le devices connection problem;
  • Loading branch information
pierantoniomerlino committed Nov 9, 2015
2 parents 74388f2 + 74be802 commit 19fc59f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
public class BluetoothProcess {

private static final Logger s_logger = LoggerFactory.getLogger(BluetoothProcess.class);
private static final ExecutorService s_streamGobblers = Executors.newFixedThreadPool(2);
private static final ExecutorService s_streamGobblers = Executors.newCachedThreadPool();

private Process m_process;
private Future<?> m_futureInputGobbler;
Expand Down

0 comments on commit 19fc59f

Please sign in to comment.