reconfigure

in lib/gitlab/qa/component/gitlab.rb [222:239]


        def reconfigure
          setup_omnibus
          log_file_path = log_file
          config_file = File.open(log_file_path, "w")
          @docker.attach(name) do |line, _wait|
            config_file.write(line)

            if line.include?('There was an error running gitlab-ctl reconfigure')
              Runtime::Logger.error(
                "Failure while running gitlab-ctl reconfigure command. Please check the #{log_file_path} in the artefact for more info"
              )
            end

            
            break if line.include?('gitlab Reconfigured!')
          end
        end