Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
return availableParallelism
}
return availableParallelism
}
-/**
- * Computes the retry delay in milliseconds using an exponential back off algorithm.
- *
- * @param retryNumber - The number of retries that have already been attempted
- * @param maxDelayRatio - The maximum ratio of the delay that can be randomized
- * @returns Delay in milliseconds
- */
-export const exponentialDelay = (
- retryNumber = 0,
- maxDelayRatio = 0.2
-): number => {
- const delay = Math.pow(2, retryNumber) * 100
- const randomSum = delay * maxDelayRatio * Math.random() // 0-(maxDelayRatio*100)% of the delay
- return delay + randomSum
-}
+// /**
+// * Computes the retry delay in milliseconds using an exponential back off algorithm.
+// *
+// * @param retryNumber - The number of retries that have already been attempted
+// * @param maxDelayRatio - The maximum ratio of the delay that can be randomized
+// * @returns Delay in milliseconds
+// */
+// export const exponentialDelay = (
+// retryNumber = 0,
+// maxDelayRatio = 0.2
+// ): number => {
+// const delay = Math.pow(2, retryNumber) * 100
+// const randomSum = delay * maxDelayRatio * Math.random() // 0-(maxDelayRatio*100)% of the delay
+// return delay + randomSum
+// }
/**
* Computes the median of the given data set.
/**
* Computes the median of the given data set.