Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Instrument Control
NomadCommandSystem
Commits
23b5bc52
Commit
23b5bc52
authored
Apr 16, 2020
by
Locatelli
Browse files
Merge remote-tracking branch 'origin/V4.0' into ploty2
parents
d539a617
3639c498
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
23b5bc52
4.0.1 16/04/2020
-----
* Correctly set nomadServerEndPoint when running in remote mode
4.0.0
-----
* Remote control management
...
...
pom.xml
View file @
23b5bc52
...
...
@@ -2,7 +2,7 @@
<modelVersion>
4.0.0
</modelVersion>
<groupId>
fr.ill.ics
</groupId>
<artifactId>
nomadcommandsystem
</artifactId>
<version>
4.0.
0
</version>
<version>
4.0.
1
</version>
<name>
NomadCommandSystem
</name>
<description>
Java bridge for the communication with the Nomad server
</description>
<scm>
...
...
src/main/java/fr/ill/ics/nscclient/serverconnection/ServerInstance.java
View file @
23b5bc52
...
...
@@ -7,6 +7,7 @@ import fr.ill.ics.cameo.Application;
import
fr.ill.ics.cameo.Application.Instance
;
import
fr.ill.ics.cameo.ConnectionTimeout
;
import
fr.ill.ics.cameo.Server
;
import
fr.ill.ics.nscclient.sessionmanagement.SessionManager
;
import
fr.ill.ics.util.ConfigManager
;
/**
...
...
@@ -33,8 +34,7 @@ public class ServerInstance {
nomadServerEndpoint
=
ConfigManager
.
getInstance
().
getNomadServerEndpoint
();
}
else
{
// nomad endpoint is build from selected instrument
//nomadServerEndpoint = return "tcp://" + SessionManager.getInstance(CommandZoneWrapper.SERVER_ID).getInstrumentName() + ":7000";
nomadServerEndpoint
=
"tcp://localhost:7000"
;
nomadServerEndpoint
=
"tcp://"
+
SessionManager
.
getInstance
(
CommandZoneWrapper
.
SERVER_ID
).
getInstrumentName
()
+
":7000"
;
}
// Connect to the server.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment