Closed bbonneton closed 8 years ago
Similar issue found:
cloud/node_modules/loopback-connector-remote/node_modules/strong-remoting/node_modules/strong-globalize/lib/globalize.js:97 path = global.STRONGLOOP_GLB.getHash(path); ^
TypeError: global.STRONGLOOP_GLB.getHash is not a function
@bbonneton @TimDuckworth : Will you try v2.6.10?
@Setogit confirmed that 2.6.10 does not have same issue I saw. Thank you.
@Setogit v2.6.10 solved the two issues I saw. Thanks a lot !
When I use "slc loopback:export-api-def", I get the following error :
OS : Windows 10 Node : 4.5.0 NPM : 3.10.6 loopback@2.31.0
I used the following workaround : change strong-globalize\lib\globalize.js:97 from
path = global.STRONGLOOP_GLB.getHash(path);
topath = md5(path);
which is a revert of one of your latest commits, so I guess that's not a real solution ;-)I also had the same kind of error in strongloop arc while trying to test the db connection and it was solved with this workaround.