greenkeeper[bot] on semver-7.0.0
chore(package): update semver t… (compare)
greenkeeper[bot] on can-super-model-2.0.0
fix(package): update can-super-… (compare)
greenkeeper[bot] on can-define-rest-model-2.0.0
fix(package): update can-define… (compare)
greenkeeper[bot] on can-define-realtime-rest-model-2.0.0
fix(package): update can-define… (compare)
greenkeeper[bot] on can-connect-ndjson-2.0.0
fix(package): update can-connec… (compare)
greenkeeper[bot] on @octokit
greenkeeper[bot] on @octokit
chore(package): update @octokit… (compare)
greenkeeper[bot] on @octokit
greenkeeper[bot] on @octokit
chore(package): update @octokit… (compare)
Potentially unhandled rejection [4] Error: Timeout of 5000 exceeded
at eval (http://localhost:8082/src/index.stache:247:17)
at eval (http://localhost:8082/node_modules/can-zone/lib/tasks.js:149:15)
at Task.run (http://localhost:8082/node_modules/can-zone/lib/zone.js:41:17)
at Zone.runTask (http://localhost:8082/node_modules/can-zone/lib/zone.js:183:14)
instances: {
get: function get(prevVal, resolver) {
DataStreamAppInstance.getList({ artifact: this.app.artifact, ts: this.updateTs }).then(function (data) {
// setTimeout($.proxy(this.updateData, this), 10000);
resolver(data);
});
}
},
export const ViewModel = DefineMap.extend({
title: {
get() {
return 'Recent Deploys';
}
},
updateTime: 'number',
deploys: {
get(prevVal, resolver) {
if(this.updateTime) {
var params = route.data.serialize();
params.ts = this.updateTime;
Deploy.getList(params).then((d) => {
setTimeout($.proxy(this.update, this), 30000);
resolver(d);
});
}
else {
resolver(null);
}
}
},
update() {
this.updateTime = new Date().getTime();
}
});
export default Component.extend({
tag: 'deploy-list',
ViewModel,
events: {
inserted() {
this.viewModel.update();
}
},
view
});
import template from "./nav.stache";
var template = steal("./nav.stache");
can-component.js:409 Uncaught TypeError: betweenTagsRenderer is not a function
at Constructor.setup (can-component.js:409)
at Function.newInstance (can-construct.js:288)
at Constructor.init (can-construct.js:636)
at new Constructor (eval at <anonymous> (can-construct.js:NaN), <anonymous>:3:34)
at Object.eval [as nav-base] (can-component.js:228)
at HTMLElement.CustomElement.connectedCallback (can-view-callbacks.js:181)
at Object.tag (can-view-callbacks.js:188)
at Function.setup (can-component.js:227)
at Function.extend (can-construct.js:687)
at execute (nav.js:185)
steal
syntax requires a callback