in source/stale-playlist-detector/detector.js [62:75]
_onEnter: function() {
// validate configuration data
if (!options.origin_url) {
logger.error("missing options.origin_url");
this.transition("configuration-problem");
} else {
if (!options.cdn_url) {
logger.error("missing options.cdn_url");
this.transition("configuration-problem");
} else {
this.transition("configure");
}
}
}