Skip to content
Snippets Groups Projects
  1. May 08, 2023
    • Marius Bobin's avatar
      Implement runner backoff for migrations · d579565c
      Marius Bobin authored and Bob Van Landuyt's avatar Bob Van Landuyt committed
      It allows migrations to specify that they need
      heavy locks on the CI tables and that the runner
      requests should not be accepted while the migration
      is in progress.
      
      Example:
      
      ```
      class RunnerBackoffExample < Gitlab::Database::Migration[2.1]
        enable_runner_backoff!
        enable_lock_retries!
      
        def change; end
      end
      ```
      
      Changelog: added
      d579565c
  2. May 05, 2023
Loading