From fb9ab4cd61997d2a205502a32e2d5e1ab0b80f64 Mon Sep 17 00:00:00 2001 From: Sebastian Serth Date: Mon, 19 Dec 2022 17:09:59 +0100 Subject: [PATCH] DCP: Allow unused keyword arguments for Rubocop --- lib/runner/strategy/docker_container_pool.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/runner/strategy/docker_container_pool.rb b/lib/runner/strategy/docker_container_pool.rb index 6e56529d..81661d24 100644 --- a/lib/runner/strategy/docker_container_pool.rb +++ b/lib/runner/strategy/docker_container_pool.rb @@ -104,7 +104,7 @@ class Runner::Strategy::DockerContainerPool < Runner::Strategy Rails.logger.debug { "#{Time.zone.now.getutc.inspect}: Finished copying files" } end - def retrieve_files(path: './', recursive: true, privileged_execution: false) + def retrieve_files(path: './', recursive: true, privileged_execution: false) # rubocop:disable Lint/UnusedMethodArgument for the keyword argument # The DockerContainerPool does not support retrieving files from the runner. {'files' => []} end