@knapsack-pro/core
Advanced tools
Comparing version 1.6.2 to 1.7.0
# Change Log | ||
## [v1.7.0](https://github.com/KnapsackPro/knapsack-pro-core-js/tree/v1.7.0) (2020-05-20) | ||
[Full Changelog](https://github.com/KnapsackPro/knapsack-pro-core-js/compare/v1.6.2...v1.7.0) | ||
**Implemented enhancements:** | ||
- Increase retry delay between requests from 2s to 8s [\#27](https://github.com/KnapsackPro/knapsack-pro-core-js/pull/27) ([ArturT](https://github.com/ArturT)) | ||
## [v1.6.2](https://github.com/KnapsackPro/knapsack-pro-core-js/tree/v1.6.2) (2019-12-05) | ||
@@ -4,0 +11,0 @@ [Full Changelog](https://github.com/KnapsackPro/knapsack-pro-core-js/compare/v1.6.1...v1.6.2) |
@@ -108,3 +108,3 @@ "use strict"; | ||
KnapsackProAPI.prototype.retryDelay = function (retryCount) { | ||
var requestRetryTimebox = 2000; | ||
var requestRetryTimebox = 8000; | ||
var delay = retryCount * requestRetryTimebox; | ||
@@ -111,0 +111,0 @@ var randomSum = delay * 0.2 * Math.random(); |
{ | ||
"name": "@knapsack-pro/core", | ||
"version": "1.6.2", | ||
"version": "1.7.0", | ||
"description": "Knapsack Pro Core library splits tests across CI nodes and makes sure that tests will run in optimal time on each CI node. This library gives core features like communication with KnapsackPro.com API. This library is a dependency for other projects specific for particular test runner.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -26,2 +26,8 @@ # @knapsack-pro/core | ||
:heavy_exclamation_mark: __NEW:__ Up to date [FAQ for Knapsack Pro JavaScript clients can be found here](https://knapsackpro.com/faq). | ||
__OLD:__ This README also contains FAQ questions but we keep adding new info only to our new FAQ page mentioned above. | ||
We keep this old FAQ in README to not break old links spread across the web. | ||
### How to change log level? | ||
@@ -104,5 +110,11 @@ | ||
Turn on `Prettier: Eslint Integration` checkbox. | ||
Turn on `Prettier: Tslint Integration` checkbox. | ||
- Turn on `Prettier: Eslint Integration` checkbox. | ||
- Turn on `Prettier: Tslint Integration` checkbox. If you can't find this checkbox, use `Ctrl + Shift + P` shortcut to find `Preferences: Open Settings (JSON)` option. Add below line to your settings file: | ||
``` | ||
{ | ||
"prettier.tslintIntegration": true | ||
} | ||
``` | ||
- Go to `File > Preferences > Settings > Text Editor > Formatting` | ||
@@ -109,0 +121,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
68302
188