-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: add a note about box.cfg.background usage
@TarantoolBot document Title: User should not to set `box.cfg.background = true` with `tt start` `tt start` daemonizes a Tarantool process itself. The `box.cfg.background` setting does the same thing from a Tarantool process. These features conflict with each other. As a result, `tt status` shows an invalid status of a Tarantool instance, and it is unable to stop the instance with `tt stop`. A user should never set `box.cfg.background = true` in an application code that is started by `tt`. Closes #780
- Loading branch information
1 parent
de2af1c
commit c9b70e2
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Known issues | ||
|
||
The file includes built-in errors we expect people to encounter and common | ||
problems reported by users. For the latest list of all issues see | ||
the [Github Issues page](https://github.com/tarantool/tt/issues). | ||
|
||
## Contents | ||
|
||
* [Do not set the box.cfg.background](#do-not-set-the-boxcfgbackground) | ||
|
||
## Do not set the box.cfg.background | ||
|
||
`tt start` daemonizes a Tarantool process itself. The [box.cfg.background | ||
setting][cfg-background] does the same thing from a Tarantool process. These | ||
features conflict with each other. As a result, `tt status` shows an invalid | ||
status of a Tarantool instance, and it is unable to stop the instance | ||
with `tt stop`. | ||
|
||
You should never set `box.cfg.background = true` in an application code that | ||
is started by `tt`. | ||
|
||
[cfg-background]: https://www.tarantool.io/en/doc/latest/reference/configuration/#confval-background |