Leaf lifetime exceeds 60s when Ajax is run on create form

Created on 3 November 2020, over 4 years ago
Updated 7 February 2024, about 1 year ago

Problem/Motivation

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)

Steps to reproduce

  1. Create subgroup with an image field.
  2. Go to form to create a subgroup entity.
  3. Fill in required fields.
  4. Choose an image so it gets added to form via Ajax (showing the Alt field).
  5. Wait more than 60 seconds.
  6. Hit "Save" button.

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);

Proposed resolution

Somehow make sure that $child->getCreatedTime() does not get set with Ajax calls made before the entity is actually saved.

Remaining tasks

Create patch.

User interface changes

None.

API changes

None.

Data model changes

None.

πŸ› Bug report
Status

Closed: outdated

Version

1.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States jrb Raleigh-Durham Area, NC, USA

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024