From 9554fa3746918b9e90dabef77cc4c5a33c32f190 Mon Sep 17 00:00:00 2001 From: Alan Clucas Date: Wed, 28 Aug 2024 14:58:46 +0100 Subject: [PATCH] Update docs/synchronization.md Co-authored-by: Anton Gilgur <4970083+agilgur5@users.noreply.github.com> Signed-off-by: Alan Clucas --- docs/synchronization.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/synchronization.md b/docs/synchronization.md index eb0a978331b68..759eff474c8a4 100644 --- a/docs/synchronization.md +++ b/docs/synchronization.md @@ -159,8 +159,8 @@ Examples: When a Workflow cannot acquire a lock it will be placed into a ordered queue. Workflows can have a `priority` set in their specification. -The queue is first ordered by priority, with a higher priority number being placed before a lower priority number. -The queue is then ordered by `CreationTimestamp` of the Workflow; older Workflows will be ordered before newer workflows. +The queue is first ordered by priority: a higher priority number is placed before a lower priority number. +The queue is then ordered by `creationTimestamp`: older Workflows are placed before newer workflows. Workflows can only acquire a lock if they are at the front of the queue for that lock.