Skip to content

Commit 32986ce

Browse files
committed
fix boolean on deployment
1 parent 346f75d commit 32986ce

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

OpenFlow/src/Messages/Message.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1140,7 +1140,7 @@ export class Message {
11401140
{ name: "noderedusers", value: (name + "noderedusers") },
11411141
{ name: "noderedadmins", value: (name + "noderedadmins") },
11421142
{ name: "api_allow_anonymous", value: user.nodered.api_allow_anonymous.toString() },
1143-
{ name: "prometheus_measure_nodeid", value: Config.prometheus_measure_nodeid },
1143+
{ name: "prometheus_measure_nodeid", value: Config.prometheus_measure_nodeid.toString() },
11441144
{ name: "NODE_ENV", value: Config.NODE_ENV },
11451145
],
11461146
livenessProbe: livenessProbe,

OpenFlowNodeRED/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openiap/nodered",
3-
"version": "1.1.131",
3+
"version": "1.1.132",
44
"description": "Simple wrapper around NodeRed, RabbitMQ and MongoDB to support a more scaleable NodeRed implementation.\r Also the \"backend\" for [OpenRPA](https://github.com/skadefro/OpenRPA)",
55
"main": "index.js",
66
"scripts": {

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.131
1+
1.1.132

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openiap/openflow",
3-
"version": "1.1.131",
3+
"version": "1.1.132",
44
"description": "Simple wrapper around NodeRed, RabbitMQ and MongoDB to support a more scaleable NodeRed implementation.\r Also the \"backend\" for [OpenRPA](https://github.com/skadefro/OpenRPA)",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)