mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-04-13 22:22:58 +00:00
Auto-merge for PR #952 via VersionBot
Fix configuration hangs with some images using a larger threadpool
This commit is contained in:
commit
bc6b5ba7b3
@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
|
||||
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## v7.9.3 - 2018-08-20
|
||||
|
||||
* Fix configuration hangs with some images by expanding the threadpool #952 [Tim Perry]
|
||||
|
||||
## v7.9.2 - 2018-08-15
|
||||
|
||||
* Add warning about re-enabling automatic updates #946 [Pagan Gazzard]
|
||||
|
@ -1,2 +1,7 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
// We boost the threadpool size as ext2fs can deadlock with some
|
||||
// operations otherwise, if the pool runs out.
|
||||
process.env.UV_THREADPOOL_SIZE = '64';
|
||||
|
||||
require('../build/app');
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "resin-cli",
|
||||
"version": "7.9.2",
|
||||
"version": "7.9.3",
|
||||
"description": "The official resin.io CLI tool",
|
||||
"main": "./build/actions/index.js",
|
||||
"homepage": "https://github.com/resin-io/resin-cli",
|
||||
|
Loading…
x
Reference in New Issue
Block a user