From 7ed079399d1be9911361b4713e383ba9de7b55fa Mon Sep 17 00:00:00 2001 From: Donata Petkeviciute Date: Thu, 18 Apr 2024 14:48:05 +0200 Subject: [PATCH] update website --- en/blog/2024-04-09-jobrunr-and-jobrunr-pro-v7/index.html | 1 + en/documentation/pro/dynamic-queues/index.html | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/en/blog/2024-04-09-jobrunr-and-jobrunr-pro-v7/index.html b/en/blog/2024-04-09-jobrunr-and-jobrunr-pro-v7/index.html index 317da6f1..ee57a7cc 100644 --- a/en/blog/2024-04-09-jobrunr-and-jobrunr-pro-v7/index.html +++ b/en/blog/2024-04-09-jobrunr-and-jobrunr-pro-v7/index.html @@ -290,6 +290,7 @@

Breaking changes

  • JobContext.getSignature() has been renamed to JobContext.getJobSignature()
  • JobDashboardProgressBar.setValue(...) has been renamed to JobDashboardProgressBar.setProgress(long succeededAmount)
  • Overall BatchJobs logic has been rewritten, make sure MigrateFromV6toV7Task is run
  • +
  • Dynamic queues configuration has been changed in Spring, Quarkus and Micronaut: dynamic-queues.type has been removed, instead the type is now part of the dynamic queues property keys, e.g., org.jobrunr.jobs.dynamic-queue.round-robin.label-prefix (please adapt to your framework)
  • If you are a JobRunr OSS user and you are interested in JobRunr Pro, you can find all the pricing information here.

    OSS version:

    diff --git a/en/documentation/pro/dynamic-queues/index.html b/en/documentation/pro/dynamic-queues/index.html index 7aa155ee..237a9d0d 100644 --- a/en/documentation/pro/dynamic-queues/index.html +++ b/en/documentation/pro/dynamic-queues/index.html @@ -438,8 +438,8 @@
    Round Robin Dynamic Queues

    Configuring Round Robin Dynamic Queues by means of Spring Boot Properties:
    You can also enable the round robin dynamic queues easily via Spring properties:

    -
    org.jobrunr.jobs.dynamic-queues.type=round-robin
    -org.jobrunr.jobs.dynamic-queues.label-prefix=tenant:
    +
    org.jobrunr.jobs.dynamic-queue.round-robin.label-prefix=tenant: 
    +org.jobrunr.jobs.dynamic-queue.round-robin.title=Tenants
     
    Weighted Round Robin Dynamic Queues

    Configuring Weighted Round Robin Dynamic Queues by means of the Fluent API: