fixes
This commit is contained in:
parent
0ae267ac1d
commit
dbe2f8c31b
|
@ -69,7 +69,7 @@ services:
|
||||||
mqtt.broker.uri: tcp://broker.hivemq.com:1883
|
mqtt.broker.uri: tcp://broker.hivemq.com:1883
|
||||||
discovery.endpoint.uri: https://tapas-auction-house.86-119-34-242.nip.io
|
discovery.endpoint.uri: https://tapas-auction-house.86-119-34-242.nip.io
|
||||||
auction.house.uri: https://tapas-auction-house.86-119-35-40.nip.io
|
auction.house.uri: https://tapas-auction-house.86-119-35-40.nip.io
|
||||||
tasks.list.uri: http://tapas-tasks.86-119-35-40.nip.io
|
tasks.list.uri: https://tapas-tasks.86-119-35-40.nip.io
|
||||||
labels:
|
labels:
|
||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.routers.tapas-auction-house.rule=Host(`tapas-auction-house.${PUB_IP}.nip.io`)"
|
- "traefik.http.routers.tapas-auction-house.rule=Host(`tapas-auction-house.${PUB_IP}.nip.io`)"
|
||||||
|
|
|
@ -21,7 +21,8 @@ public class Executor extends ExecutorBase {
|
||||||
@Override
|
@Override
|
||||||
protected
|
protected
|
||||||
String execution(String input) {
|
String execution(String input) {
|
||||||
return userToRobotPort.userToRobot();
|
userToRobotPort.userToRobot();
|
||||||
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,7 +43,7 @@ public class ExternalTaskExecutedWebAdapter implements ExternalTaskExecutedEvent
|
||||||
op2 = new JSONObject()
|
op2 = new JSONObject()
|
||||||
.put("op", "add")
|
.put("op", "add")
|
||||||
.put("path", "/outputData")
|
.put("path", "/outputData")
|
||||||
.put("value", externalTaskExecutedEvent.getOutputData());
|
.put("value", externalTaskExecutedEvent.getOutputData().getValue());
|
||||||
} catch (JSONException e) {
|
} catch (JSONException e) {
|
||||||
logger.log(Level.SEVERE, e.getLocalizedMessage(), e);
|
logger.log(Level.SEVERE, e.getLocalizedMessage(), e);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user