File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
broker/src/main/java/org/apache/rocketmq/broker/processor Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3466,13 +3466,13 @@ private synchronized RemotingCommand switchTimerEngine(ChannelHandlerContext ctx
34663466 if (MessageConst .TIMER_ENGINE_ROCKSDB_TIMELINE .equals (engineType )) {
34673467 if (this .brokerController .getTimerMessageRocksDBStore () == null ) {
34683468 response .setCode (ResponseCode .INVALID_PARAMETER );
3469- response .setRemark ("timerUseRocksDB muse be configured true when broker start" );
3469+ response .setRemark ("timerRocksDBEnable must be configured true when broker start" );
34703470 return response ;
34713471 }
34723472 result = this .brokerController .getTimerMessageRocksDBStore ().restart ();
34733473 if (result ) {
34743474 properties .put ("timerStopEnqueue" , Boolean .TRUE .toString ());
3475- properties .put ("timerUseRocksDB " , Boolean .TRUE .toString ());
3475+ properties .put ("timerRocksDBEnable " , Boolean .TRUE .toString ());
34763476 properties .put ("timerRocksDBStopScan" , Boolean .FALSE .toString ());
34773477 }
34783478 } else {
You can’t perform that action at this time.
0 commit comments