summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHwankyu Jhun <h.jhun@samsung.com>2024-02-19 13:31:19 +0900
committerHwankyu Jhun <h.jhun@samsung.com>2024-02-19 13:31:23 +0900
commit2b34d3731b39d449115f2db8ff68ac35c79c5b91 (patch)
tree22f3ae80f9e66ac3881c524c82b3576f2beb045a /src
parent815d24e682d3db541f1cac5a61c1b6ca4b9097cf (diff)
downloadlaunchpad-2b34d3731b39d449115f2db8ff68ac35c79c5b91.tar.gz
launchpad-2b34d3731b39d449115f2db8ff68ac35c79c5b91.tar.bz2
launchpad-2b34d3731b39d449115f2db8ff68ac35c79c5b91.zip
Revert "Change launch mode to previous operation"
This reverts commit bc550e7e7c90b6f17b06de7815e0cd2e99662d08. Change-Id: Ic54458ee7d0288a46f3a8c58b81d86f0fa7e1a2c
Diffstat (limited to 'src')
-rw-r--r--src/launchpad-process-pool/conf/launchpad.conf.in2
-rw-r--r--src/launchpad-process-pool/config.hh2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/launchpad-process-pool/conf/launchpad.conf.in b/src/launchpad-process-pool/conf/launchpad.conf.in
index 139d35f..e05b7ba 100644
--- a/src/launchpad-process-pool/conf/launchpad.conf.in
+++ b/src/launchpad-process-pool/conf/launchpad.conf.in
@@ -36,4 +36,4 @@ NumberOfLoaderProcesses=1
## - When the loader process is executed, the launchpad sets the low scheduling priority to the running process.
## - And then, the launchpad sets the normal priority to the running process if the launch request is delivered.
[LaunchMode]
-Mode=Previous_Operation
+Mode=Default_Operation
diff --git a/src/launchpad-process-pool/config.hh b/src/launchpad-process-pool/config.hh
index f02f6fd..0daf5b2 100644
--- a/src/launchpad-process-pool/config.hh
+++ b/src/launchpad-process-pool/config.hh
@@ -106,7 +106,7 @@ class Config {
const Mode GetMode() const;
private:
- Mode mode_ = Mode::PreviousOperation;
+ Mode mode_ = Mode::DefaultOperation;
};
Config(const Config&) = delete;