Skip to content

Commit

Permalink
Fix bug 480434 - Multiple bluetooth le devices connection problem;
Browse files Browse the repository at this point in the history
Signed-off-by: Ying Shaodong <helloysd@gmail.com>
  • Loading branch information
gavinying committed Oct 26, 2015
1 parent 74388f2 commit 74be802
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 74be802

Please sign in to comment.