Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
A simple module to be used for creating exponentially weighted backoff attempts. Used in Primus
var http = require('http');
var back = require('back');
//
// Options to use for backoff
//
// Remark: This object is modified so it should be cloned if you are dealing
// with independent backoff attempts and want to use these values as a base.
//
var backoff = {
retries: 3,
minDelay: 1000, // Defaults to 500ms
maxDelay: 10000, // Defaults to infinity
// The following option is shown with its default value but you will most
// likely never define it as it creates the exponential curve.
factor: 2,
};
function retry(err) {
return back(function (fail) {
if (fail) {
// Oh noez we never reconnect :(
console.error('Retry failed with ' + err.message);
process.exit(1);
}
//
// Remark: .attempt and .timeout are added to this object internally
//
console.log('Retry attempt # ' + backoff.attempt +
' being made after ' + backoff.timeout + 'ms');
request();
}, backoff);
}
function request() {
http.get('http://localhost:9000', function (res) {
console.log('Successful Response that will not happen!');
}).on('error', retry);
}
request();
back(callback, backoffOpts);
The back
function returns you a function that simply executes the callback
after a setTimeout
. The timeout is what is based on an exponential
backoff of course!
I am considering switching the backoffOpts
and callback
as I understand it
is an irregular api if enough people want it.
FAQs
Simple exponential backoff pulled out of Primus by @3rd-Eden
We found that back demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.