This commit is contained in:
Marcel 2021-12-19 22:08:32 +01:00
parent 0ae267ac1d
commit dbe2f8c31b
3 changed files with 4 additions and 3 deletions

View File

@ -69,7 +69,7 @@ services:
mqtt.broker.uri: tcp://broker.hivemq.com:1883
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
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:
- "traefik.enable=true"
- "traefik.http.routers.tapas-auction-house.rule=Host(`tapas-auction-house.${PUB_IP}.nip.io`)"

View File

@ -21,7 +21,8 @@ public class Executor extends ExecutorBase {
@Override
protected
String execution(String input) {
return userToRobotPort.userToRobot();
userToRobotPort.userToRobot();
return "";
}
}

View File

@ -43,7 +43,7 @@ public class ExternalTaskExecutedWebAdapter implements ExternalTaskExecutedEvent
op2 = new JSONObject()
.put("op", "add")
.put("path", "/outputData")
.put("value", externalTaskExecutedEvent.getOutputData());
.put("value", externalTaskExecutedEvent.getOutputData().getValue());
} catch (JSONException e) {
logger.log(Level.SEVERE, e.getLocalizedMessage(), e);
return;