ЕСОЗ - публічна документація

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Current »

Purpose

Job made for cleaning personal data of persons in merge requests.

Job logic

  1. Job starts once in 24 hours by default (configured parameter MERGE_REQUEST_AUTOCLEANING_SCHEDULE = “0 0 */1 * *“ by default).

  2. After starting it gets value from global parameter MERGE_REQUEST_DATA_EXPIRATION_DAYS ( by default 1 day)

  3. Select all entries from il.merge_requests with status=EXPIRED, REJECTED, SIGNED:

    1. If inserted_at >= current_datetime() - MERGE_REQUEST_DATA_EXPIRATION_DAYS. Then skip the record

    2. If inserted_at < current_datetime() - MERGE_REQUEST_DATA_EXPIRATION_DAYS. Then update entry:

      1. set fields data, authentication_method_current, printout_form, documents to null.

      2. set updated_by to system user.

      3. set updated_at to current datetime.

  • No labels