We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
importing the following app: https://github.com/TIBCOSoftware/flogo-cli/blob/master/docs/samples/devices/device-l0x.json
gives me an error because the trigger "has not been installed"
Actually, it seems that it is just because the path to the trigger is not correct.
Instead of: { "id": "l0x_trigger", "name": "Read From VL53L0X", "ref": "github.com/TIBCOSoftware/flogo-contrib/device/trigger/vl53l0x_stream", "actionId": "monitor_dist", "settings": { "interval": "500" } }
{ "id": "l0x_trigger", "name": "Read From VL53L0X", "ref": "github.com/TIBCOSoftware/flogo-contrib/device/trigger/vl53l0x_stream", "actionId": "monitor_dist", "settings": { "interval": "500" } }
it should be: { "id": "l0x_trigger", "name": "Read From VL53L0X", "ref": "github.com/TIBCOSoftware/flogo-contrib/device/trigger/vl53l0xstream", "actionId": "monitor_dist", "settings": { "interval": "500" } }
{ "id": "l0x_trigger", "name": "Read From VL53L0X", "ref": "github.com/TIBCOSoftware/flogo-contrib/device/trigger/vl53l0xstream", "actionId": "monitor_dist", "settings": { "interval": "500" } }
Philippe
The text was updated successfully, but these errors were encountered:
@philippegabert actually it looks like that ref path is fine, but the problem is in the flogo-contrib with the trigger.json (https://github.com/TIBCOSoftware/flogo-contrib/blob/master/device/trigger/vl53l0x_stream/trigger.json). The ref in the json metadata is incorrect.
It should be:
"ref": "github.com/TIBCOSoftware/flogo-contrib/device/trigger/vl53l0x_stream",
Sorry, something went wrong.
vl53l0x_stream trigger metadata has incorrect ref
babeaa5
Resolving issue TIBCOSoftware/flogo-cli#73
vl53l0x_stream trigger metadata has incorrect ref (#225)
9d46feb
resolved in TIBCOSoftware/flogo-contrib#225
mellistibco
No branches or pull requests
Hi,
importing the following app:
https://github.com/TIBCOSoftware/flogo-cli/blob/master/docs/samples/devices/device-l0x.json
gives me an error because the trigger "has not been installed"
Actually, it seems that it is just because the path to the trigger is not correct.
Instead of:
{ "id": "l0x_trigger", "name": "Read From VL53L0X", "ref": "github.com/TIBCOSoftware/flogo-contrib/device/trigger/vl53l0x_stream", "actionId": "monitor_dist", "settings": { "interval": "500" } }
it should be:
{ "id": "l0x_trigger", "name": "Read From VL53L0X", "ref": "github.com/TIBCOSoftware/flogo-contrib/device/trigger/vl53l0xstream", "actionId": "monitor_dist", "settings": { "interval": "500" } }
Philippe
The text was updated successfully, but these errors were encountered: