Skip to content

Commit

Permalink
v5.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sebthom committed Apr 2, 2023
1 parent 911474c commit 64010cd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]


## [5.1.1] - 2023-04-02

- fixed `Unknown identifier : _pollPeriod`


## [5.1.0] - 2023-04-02

### Added
Expand Down
2 changes: 1 addition & 1 deletion haxelib.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"description": "A haxelib with cross-platform concurrency functions and classes (thread-pool, task executor/scheduler, re-entrant lock, semaphore, atomic int/bool, thread-safe collections/queues)",
"contributors": ["vegardit"],
"releasenote": "See https://github.com/vegardit/haxe-concurrent/blob/main/CHANGELOG.md",
"version": "5.1.0",
"version": "5.1.1",
"dependencies": { }
}
2 changes: 1 addition & 1 deletion src/hx/concurrent/thread/ThreadPool.hx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class ThreadPool extends ServiceBase {
if (task == null) {
if(state != RUNNING)
break;
Sys.sleep(_pollPeriod);
Sys.sleep(pollPeriod);
} else {
try {
_workingThreadCount++;
Expand Down

0 comments on commit 64010cd

Please sign in to comment.