apache / openwhisk-catalog

Curated catalog of Apache OpenWhisk packages to interface with event producers and consumers
https://openwhisk.apache.org/
Apache License 2.0
33 stars 49 forks source link

The weather action forecast hard codes the host value #239

Closed csantanapr closed 6 years ago

csantanapr commented 7 years ago

In the action weather/forecast

The url uses a hard coded host value of twcservice.mybluemix.net User have reported that this value is different per region like twcservice.eu-gb.bluemix.net

We should change add host as a binding parameter and also update the readme

var host = params.host || 'twcservice.mybluemix.net';
var url = `https://${host}/api/weather/v1/geocode/${lat}/${lon}`;
narinearraul commented 6 years ago

This was resolved in #240 @csantanapr can we close this?