diff options
| author | Nay <dnpd.dd@gmail.com> | 2013-07-30 15:34:38 +0100 |
|---|---|---|
| committer | Nay <dnpd.dd@gmail.com> | 2013-07-30 15:34:38 +0100 |
| commit | a7d876e8b570f023db3bf8903f04d251445b8dc1 (patch) | |
| tree | 42ddbec1d405f50314b0474aa4f07b2913184d2d /src | |
| parent | 0d0baf004d58f5752f3ec3e0341d6e2cbbc8bd04 (diff) | |
Config: Change ProcessPriority default to 0 (Normal)
On Linux, superuser (root) is required to set a process high priority and we shouldn't force that.
(It's already set to 0 (Normal) in worldserver\Master.cpp and authserver\Main.cpp)
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/authserver/authserver.conf.dist | 8 | ||||
| -rw-r--r-- | src/server/worldserver/worldserver.conf.dist | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/server/authserver/authserver.conf.dist b/src/server/authserver/authserver.conf.dist index 0a50601f86d..3c811eda3b3 100644 --- a/src/server/authserver/authserver.conf.dist +++ b/src/server/authserver/authserver.conf.dist @@ -82,11 +82,11 @@ UseProcessors = 0 # # ProcessPriority # Description: Process priority setting for Windows and Linux based systems. -# Details: On Linux, a nice value of -15 is used. On Windows, process is set to HIGH class. -# Default: 1 - (High) -# 0 - (Normal) +# Details: On Linux, a nice value of -15 is used. (requires superuser). On Windows, process is set to HIGH class. +# Default: 0 - (Normal) +# 1 - (High) -ProcessPriority = 1 +ProcessPriority = 0 # # RealmsStateUpdateDelay diff --git a/src/server/worldserver/worldserver.conf.dist b/src/server/worldserver/worldserver.conf.dist index aac04fe9337..c4e19e851b3 100644 --- a/src/server/worldserver/worldserver.conf.dist +++ b/src/server/worldserver/worldserver.conf.dist @@ -160,11 +160,11 @@ UseProcessors = 0 # # ProcessPriority # Description: Process priority setting for Windows and Linux based systems. -# Details: On Linux, a nice value of -15 is used. On Windows, process is set to HIGH class. -# Default: 1 - (High) -# 0 - (Normal) +# Details: On Linux, a nice value of -15 is used. (requires superuser). On Windows, process is set to HIGH class. +# Default: 0 - (Normal) +# 1 - (High) -ProcessPriority = 1 +ProcessPriority = 0 # # Compression |
