Skip to content

Commit

Permalink
fix: make sure process.getuid doesn't get called on Windows
Browse files Browse the repository at this point in the history
`process.getuid` method isn't supported on `Windows` as explained [here](https://nodejs.org/api/process.html#process_process_getuid); so, this commit is for fixing that bug.

Ref: LOG-6981
Semver: patch
  • Loading branch information
Samir Musali authored and smusali committed Aug 21, 2020
1 parent 45964da commit 7da58b7
Show file tree
Hide file tree
Showing 7 changed files with 217 additions and 217 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ lib-cov

# Coverage directory used by tools like istanbul
coverage
.nyc_output

# node-waf configuration
.lock-wscript
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fix stringification issue on handling 207 [#152](https://github.com/logdna/logdna-agent/pull/152)
- Fix memory leak issue [#157](https://github.com/logdna/logdna-agent/pull/157)
- Make sure `process.getuid` doesn't get called on `Windows` [#188](https://github.com/logdna/logdna-agent/pull/188)

## [1.6.2] - December 5, 2019
### Added
Expand Down
Loading

0 comments on commit 7da58b7

Please sign in to comment.