Skip to content

Commit b1f4b1c

Browse files
committed
orion & iotagent-node-lib versions fixed
1 parent d40697d commit b1f4b1c

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docker/docker-compose.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ services:
8080
- mongodb:/data
8181

8282
orion:
83-
image: fiware/orion
83+
image: fiware/orion:3.10.1
84+
#image: fiware/orion-ld:1.4.0
8485
hostname: orion
8586
depends_on:
8687
- mongodb
@@ -89,6 +90,7 @@ services:
8990
ports:
9091
- "1026:1026"
9192
command: -dbhost mongodb -logLevel DEBUG
93+
#command: -dbhost mongodb -logLevel DEBUG -forwarding -experimental
9294

9395
iotcarsrv:
9496
hostname: iotcarsrv

lib/iotagent-opcua.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,6 @@ async function start(newConfig, callback) {
129129
iotAgentLib.setDataQueryHandler(queryHandler.handler);
130130
iotAgentLib.setDataUpdateHandler(updateHandler.handler);
131131

132-
iotAgentLib.addDeviceProvisionMiddleware(iotAgentLib.dataPlugins.bidirectionalData.deviceProvision);
133-
iotAgentLib.addConfigurationProvisionMiddleware(iotAgentLib.dataPlugins.bidirectionalData.groupProvision);
134-
iotAgentLib.addNotificationMiddleware(iotAgentLib.dataPlugins.bidirectionalData.notification);
135-
136132
if (config.getConfig().configRetrieval) {
137133
iotAgentLib.setNotificationHandler(configurationNotificationHandler);
138134
} else {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"body-parser": "1.20.0",
7878
"dateformat": "3.0.3",
7979
"express": "4.18.1",
80-
"iotagent-node-lib": "https://github.com/telefonicaid/iotagent-node-lib.git#master",
80+
"iotagent-node-lib": "3.4.4",
8181
"logops": "2.1.2",
8282
"node-opcua": "^2.85.0",
8383
"node-opcua-client-crawler": "^2.85.0",

test/docker-compose-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ services:
1616
- mongodb:/data
1717

1818
orion:
19-
image: fiware/orion
19+
image: fiware/orion:3.10.1
20+
#image: fiware/orion-ld:1.4.0
2021
hostname: orion
2122
depends_on:
2223
- mongodb
@@ -25,6 +26,7 @@ services:
2526
ports:
2627
- "1026:1026"
2728
command: -dbhost mongodb -logLevel DEBUG
29+
#command: -dbhost mongodb -logLevel DEBUG -forwarding -experimental
2830

2931
iotcarsrv:
3032
hostname: iotcarsrv

0 commit comments

Comments
 (0)