Skip to content

Commit d6c58a6

Browse files
committed
Merge branch '6.0' into 6.1
* 6.0: Revert "[Messenger] Redis Sentinel support" Minor fixes in partial denormalizing
2 parents 835d083 + 84f576d commit d6c58a6

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

components/serializer.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1236,15 +1236,15 @@ collect all exceptions at once, and to get the object partially denormalized::
12361236
]);
12371237
} catch (PartialDenormalizationException $e) {
12381238
$violations = new ConstraintViolationList();
1239-
/** @var NotNormalizableValueException */
1239+
/** @var NotNormalizableValueException $exception */
12401240
foreach ($e->getErrors() as $exception) {
12411241
$message = sprintf('The type must be one of "%s" ("%s" given).', implode(', ', $exception->getExpectedTypes()), $exception->getCurrentType());
12421242
$parameters = [];
12431243
if ($exception->canUseMessageForUser()) {
12441244
$parameters['hint'] = $exception->getMessage();
12451245
}
12461246
$violations->add(new ConstraintViolation($message, '', $parameters, null, $exception->getPath(), null));
1247-
};
1247+
}
12481248

12491249
return $this->json($violations, 400);
12501250
}

messenger.rst

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1369,15 +1369,6 @@ redeliver_timeout Timeout before retrying a pending ``3600``
13691369
claim_interval Interval on which pending/abandoned ``60000`` (1 Minute)
13701370
messages should be checked for to
13711371
claim - in milliseconds
1372-
sentinel_persistent_id String, if null connection is null
1373-
non-persistent.
1374-
sentinel_retry_interval Int, value in milliseconds ``0``
1375-
sentinel_read_timeout Float, value in seconds ``0``
1376-
default indicates unlimited
1377-
sentinel_timeout Float, value in seconds ``0``
1378-
default indicates unlimited
1379-
sentinel_master String, if null or empty Sentinel null
1380-
support is disabled
13811372
======================= ===================================== =================================
13821373

13831374
.. caution::

0 commit comments

Comments
 (0)