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
I'm looking for an option to get config value in exec handler function, below one i tried but
exec:./lib/utility#getStatus get triggered first and config value will be undefined and might be the expected behavior , is there any alternative approach?
First i was looking into option like this #316 . For this i need to write custom shortstop handler and not sure how to do that in existing kraken setup.
Please let me know if you have any suggestions or solution .
config.json
{
"check" : "exec:./lib/utility#getStatus",
}
utility.js
var settings;
module.exports.init = function (config) {
settings = config;
}
module.exports.getStatus = function () {
//How to get config here? console.log(settings); as of now this is undefined
return true;
};
spec.js
module.exports = function spec() {
return {
/**
*
* @param config
* @param next
*/
onconfig: function(config, next) {
//Initiate Utility Function with config
require('./utility').init(config);
next(null, config);
}
};
};
The text was updated successfully, but these errors were encountered:
Hey @tomalex0 you could just export a function, which returns the getStatus function as an object, which would have access to the config object. Would be something like:
utility.js
module.exports=(config)=>{return{getStatus(){// at this point I have access to the "config" objectreturntrue;}};};
spec.js
module.exports=functionspec(){return{/** * * @param config * @param next */onconfig: function(config,next){//Initiate Utility Function with configconstutil=require('./utility')(config);varstatus=util.getStatus();// true// at this point you could also merge the resulting value from `util.getStatus` to the current kraken configuration by calling config.use({ status });next(null,config);}};};
I'm looking for an option to get config value in exec handler function, below one i tried but
exec:./lib/utility#getStatus
get triggered first and config value will be undefined and might be the expected behavior , is there any alternative approach?First i was looking into option like this #316 . For this i need to write custom shortstop handler and not sure how to do that in existing kraken setup.
Please let me know if you have any suggestions or solution .
config.json
utility.js
spec.js
The text was updated successfully, but these errors were encountered: