TIBCOSoftware / flogo-cli

Project Flogo Command Line Interface
http://flogo.io
BSD 3-Clause "New" or "Revised" License
57 stars 28 forks source link

Error at "flogo build" step; please refer to comments for more details. #1

Closed nimish-tibco closed 8 years ago

nimish-tibco commented 8 years ago

After adding trigger, and the activity to app, the "flogo build" step gives following error:

github.com/TIBCOSoftware/flogo-lib/core/data coercion.go:38: undefined: MAP github.com/TIBCOSoftware/flogo-lib/util github.com/julienschmidt/httprouter github.com/op/go-logging FATAL: command "build" failed: exit status 2

Looks like, the MAP type needs to be defined in https://github.com/TIBCOSoftware/flogo-lib/blob/master/core/data/types.go

Code synch up done on 04/19/2016, AM.

fm-tibco commented 8 years ago

MAP was too generic a term to specifically mean a map[string]string, so it was changed to PARAMS. From now on PARAMS should be used in the case where a Map on string key and value is required.