- πΊπΈUnited States jrb Raleigh-Durham Area, NC, USA
This
assert()
was removed in π Leaf lifetime exceeds 60s in large migrations Fixed , so this is no longer an issue in any branch (1.x, 2.x, and 3.x).
If a "Create" form has a field that kicks off an Ajax call (e.g. an image upload field), the $leaf_lifetime
can easily exceed 60 seconds, causing a fatal error:
AssertionError: assert($leaf_lifetime <= 60) in assert() (line 97 of /app/web/modules/contrib/subgroup/src/Entity/GroupSubgroupHandler.php)
This will cause the error here because apparently $child->getCreatedTime()
gets set when the Ajax call is made:
$leaf_lifetime = $this->time->getCurrentTime() - $child->getCreatedTime();
assert($leaf_lifetime <= 60);
Somehow make sure that $child->getCreatedTime()
does not get set with Ajax calls made before the entity is actually saved.
Create patch.
None.
None.
None.
Closed: outdated
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
This assert()
was removed in
π
Leaf lifetime exceeds 60s in large migrations
Fixed
, so this is no longer an issue in any branch (1.x, 2.x, and 3.x).