Skip to content

Commit

Permalink
hot-reloading: Add descriptions for Windows
Browse files Browse the repository at this point in the history
Signed-off-by: Hiroshi Hatake <[email protected]>
  • Loading branch information
cosmo0920 committed Sep 28, 2023
1 parent 1bd4081 commit 5b661bc
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions administration/hot-reload.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ For using curl to reload fluent-bit, users must specify an empty request body as
$ curl -X POST -d {} localhost:2020/api/v2/reload
```

For Windows, to represent empty body, users have to use `'{}'` as a body instead of raw `{}`:

```text
PS> curl -X POST -d '{}' localhost:2020/api/v2/reload
```

### Via Signal

Hot reloading also can be kicked via `SIGHUP`.
Expand All @@ -47,5 +53,4 @@ Hot reloading also can be kicked via `SIGHUP`.

## Limitations

The hot reloading feature is currently working on Linux and macOS. Windows is not supported yet.

The hot reloading feature is currently working on Linux, macOS and Windows.

0 comments on commit 5b661bc

Please sign in to comment.