Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypinkard committed Sep 21, 2023
2 parents f794559 + bab3053 commit 363b748
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.micro-manager.pycro-manager</groupId>
<artifactId>PycroManagerJava</artifactId>
<version>0.44.1</version>
<version>0.44.2</version>
<packaging>jar</packaging>
<name>Pycro-Manager Java</name>
<description>The Java components of Pycro-Manager</description>
Expand Down Expand Up @@ -144,4 +144,4 @@
</repository>
</distributionManagement>

</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ public static void main(String[] args) throws Exception {
int bufferSizeMB = Integer.parseInt(args[2]);
String coreLogPath = args[3];

core.loadSystemConfiguration(configFilePath);
if (configFilePath != null && configFilePath.length() != 0) {
core.loadSystemConfiguration(configFilePath);
}
core.setCircularBufferMemoryFootprint(bufferSizeMB);
core.enableStderrLog(true);
core.enableDebugLog(true);
Expand Down
1 change: 0 additions & 1 deletion pycromanager/test/test_startup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import os
from pycromanager import Core


def test_connect_to_core(launch_mm_headless):
mmc = Core()

Expand Down

0 comments on commit 363b748

Please sign in to comment.