We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9eb388 commit 01b1d63Copy full SHA for 01b1d63
affinity/src/main/java/net/openhft/affinity/AffinityLock.java
@@ -26,7 +26,6 @@
26
27
import java.io.Closeable;
28
import java.io.File;
29
-import java.io.IOException;
30
import java.util.BitSet;
31
32
/**
@@ -56,7 +55,7 @@ public class AffinityLock implements Closeable {
56
55
cpuLayout = VanillaCpuLayout.fromCpuInfo();
57
processors = cpuLayout.cpus();
58
}
59
- } catch (IOException e) {
+ } catch (Throwable e) {
60
LOGGER.warn("Unable to load /proc/cpuinfo", e);
61
62
PROCESSORS = processors;
0 commit comments