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

issue with version 0.0.7 #18

Open
xmlprgrm opened this issue Nov 21, 2016 · 2 comments
Open

issue with version 0.0.7 #18

xmlprgrm opened this issue Nov 21, 2016 · 2 comments

Comments

@xmlprgrm
Copy link

hi Guys,
We were using v0.0.7 in our project and stopped using it last year. I reenabled it by adding the airbrake object
ENV.airbrake = {
projectId: 'real_project_id',
projectKey: 'real_key'
};
However, I dont see any data being sent to airbrake - I confirmed by looking at the n/w traffic.
Issue seems to be that in following function in file airbrake.js
export function initialize(container) {
if (config.airbrake && !isSetup) {
isSetup = true;
if (Airbrake.setProject) {
setupAirbrake(container);
} else {
Airbrake.onload = function() {
setupAirbrake(container)
};
}
}
}

the onload event is never fired so setupAirbrake(container) is never called. Any ideas?

@xmlprgrm
Copy link
Author

When I upgrade to v0.1.1, I get following error on ember build or ember server.

Error: ENOENT: no such file or directory, stat '/Users//Projects/vandam_ui/tmp/concat_with_maps-input_base_path-lzqkqmeM.tmp/0/bower_components/airbrake-js-client/dist/client.min.js'

@fsmanuel
Copy link
Contributor

fsmanuel commented Jan 6, 2017

@xmlprgrm you need to run ember install ember-cli-airbrake or ember g ember-cli-airbrake you add the bower dependencies

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

No branches or pull requests

2 participants