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
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?
The text was updated successfully, but these errors were encountered:
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'
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?
The text was updated successfully, but these errors were encountered: