only:wow GHA brought us a ConcurrentModificationException

This commit is contained in:
rusefi 2023-09-17 16:05:02 -04:00
parent e9196ae000
commit 1b6a4f29b2
2 changed files with 3 additions and 3 deletions

View File

@ -15,9 +15,9 @@ import com.rusefi.stream.TSHighSpeedLog;
import com.rusefi.stream.VcdStreamFile;
import org.jetbrains.annotations.NotNull;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;
import static com.rusefi.binaryprotocol.IoHelper.checkResponseCode;
@ -32,7 +32,7 @@ public class BinaryProtocolLogger {
private boolean isCompositeLoggerEnabled;
private long lastLowRpmTime = System.currentTimeMillis();
private final List<StreamFile> compositeLogs = new ArrayList<>();
private final List<StreamFile> compositeLogs = new CopyOnWriteArrayList();
private final SensorCentral.SensorListener rpmListener;
private final Thread hook = new Thread(() -> closeComposites(), "BinaryProtocol::hook");

View File

@ -6,7 +6,7 @@ import java.net.URL;
import java.util.concurrent.atomic.AtomicReference;
public class rusEFIVersion {
public static final int CONSOLE_VERSION = 20230829;
public static final int CONSOLE_VERSION = 20230917;
public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
public static long classBuildTimeMillis() {