From b0a99abc2813b1b27a98c0613cd9e627cb67158d Mon Sep 17 00:00:00 2001 From: Patrick Linstruth Date: Wed, 17 Oct 2018 16:03:19 -0700 Subject: [PATCH 1/2] Fixed bug where wrong ID was used for local maintenance --- rdservice/maint_routines.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdservice/maint_routines.cpp b/rdservice/maint_routines.cpp index 75b1e30e..8f5c3cd3 100644 --- a/rdservice/maint_routines.cpp +++ b/rdservice/maint_routines.cpp @@ -93,7 +93,7 @@ void MainObject::RunSystemMaintRoutine() void MainObject::RunLocalMaintRoutine() { - RunEphemeralProcess(RDSERVICE_SYSTEMMAINT_ID, + RunEphemeralProcess(RDSERVICE_LOCALMAINT_ID, QString(RD_PREFIX)+"/bin/rdmaint",QStringList()); rda->log(RDConfig::LogInfo,"ran local maintenance routines"); From af08cc78536b9d86fbf411692ea6525bbdc8e155 Mon Sep 17 00:00:00 2001 From: Patrick Linstruth Date: Wed, 17 Oct 2018 16:07:58 -0700 Subject: [PATCH 2/2] Updated ChangeLog --- ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index 1697f9ed..c4319fbe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -17811,3 +17811,7 @@ * Disabled the 'More than half the audio will be faded...' warning in the 'Edit Audio' dialog in rdlibrary(1) if the 'No Fade on Segue Out' checkbox is ticked. +2018-10-17 Patrick Linstruth + * Fixed bug in rdservice(8) where local maintence process was started + with RDSERVICE_SYSTEMMAINT_ID instead of RDSERVICE_LOCALMAINT_ID. +