Skip to content
New issue

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

Missing patch errors not shown in the console #417

Open
s3u opened this issue Apr 9, 2012 · 1 comment
Open

Missing patch errors not shown in the console #417

s3u opened this issue Apr 9, 2012 · 1 comment

Comments

@s3u
Copy link
Member

s3u commented Apr 9, 2012

Try this script int he console

create table bitly.shorten
  on insert get from "http://api.bitly.com/v3/shorten?login={^login}&apiKey={^apikey}&longUrl={^longUrl}&format={format}"
        using defaults apikey = "{config.bitly.apikey}", login = "{config.bitly.login}", format = "json"
        using patch 'bitly.js'
        resultset 'data.url'
  on select get from "http://api.bitly.com/v3/expand?login={^login}&apiKey={^apikey}&shortUrl={^shortUrl}&format={format}"
        using defaults apikey = "{config.bitly.apikey}", login = "{config.bitly.login}", format = "json"
        using patch 'bitly.js'
        resultset 'data.expand'

This should fail as bitly.js is not found. An error comes up and disappears immediately.

@ghost ghost assigned idralyuk Apr 9, 2012
@s3u
Copy link
Member Author

s3u commented Jun 22, 2012

Also see comment by @rbdixon https://gist.github.com/2476192

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants