Skip to content

Commit

Permalink
Merge pull request #10 from EncoreTechnologies/hotfix/windows-descrip…
Browse files Browse the repository at this point in the history
…tion

Fixed windows description flag
  • Loading branch information
nmaludy authored Sep 9, 2020
2 parents a8c4099 + f40ceb8 commit ac8e722
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## Development

## 2020-09-03 - Release v0.12.4

- Fixed a bug in `fluentd_windows_service` where the service description was using the wrong flag.

Contributed by Nick Maludy (@nmaludy)

## 2020-09-03 - Release v0.12.3

- Fixed a bug in `fluentd_windows_service` where the service description was being set to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def create(context, name, should, noop)
arguments += ['--winsvc-display-name', should[:display_name]]
end
if should[:description]
arguments += ['--winsvc-description', should[:description]]
arguments += ['--winsvc-desc', should[:description]]
end
if should[:fluentdopt]
arguments += ['--reg-winsvc-fluentdopt', should[:fluentdopt]]
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "encore-fluentd",
"version": "0.12.3",
"version": "0.12.4",
"author": "encore",
"summary": "Installs, configures, and manages Fluentd data collector",
"license": "Apache-2.0",
Expand Down

0 comments on commit ac8e722

Please sign in to comment.