You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The fix is ensuring the URL has a / appended, and this appears to be caused by this "hack". In my case, it ended up making the db hostname <account>.cloudant.comhack, which triggers the above DNS lookup error.
Possible solutions here include:
detect a URL without a trailing / and throw an error
handle more gracefully by appending / when missing
The text was updated successfully, but these errors were encountered:
Currently, if you use a Cloudant backend along with a
dbUrl
config that is missing a/
at the end, you'll end up with an error like this:The fix is ensuring the URL has a
/
appended, and this appears to be caused by this "hack". In my case, it ended up making the db hostname<account>.cloudant.comhack
, which triggers the above DNS lookup error.Possible solutions here include:
/
and throw an error/
when missingThe text was updated successfully, but these errors were encountered: