Details
-
Bug
-
Status: Closed
-
Resolution: Fixed
-
7.2.X, Master
-
7.2.x, 7.1.x, 7.0.x
-
Committed
-
3
-
Regression Bug
Description
Steps to reproduce
- Go to Control Panel -> Configuration -> System Settings -> Infrastructure -> Destination Worker
- Add a new entry with the values:
Destination Name: liferay/background_task
Worker Core Size: 1
Worker Maximum Size: 2 - Go to Control Panel -> Configuration -> Server Administration -> Scripts and run the following Groovy Script
import com.liferay.portal.kernel.messaging.MessageBusUtil; destination = MessageBusUtil.getDestination("liferay/background_task"); out.println("Worker Core Size: " + destination.getWorkersCoreSize()); out.println("Worker Maximum Size: " + destination.getWorkersMaxSize());
Expected Output:
Worker Core Size: 1
Worker Maximum Size: 2
Actual Output:
Worker Core Size: 5
Worker Maximum Size: 10
Attachments
Issue Links
- is caused by
-
LPS-75707 Remove exported packages from portal-messaging
-
- Closed
-