Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot 2023-05-25 06:08:37 +00:00
parent 89297ece08
commit 3146b64c51
3 changed files with 4 additions and 2 deletions

View File

@ -276,6 +276,8 @@ and [Helm Chart deployments](https://docs.gitlab.com/charts/). They come with ap
### 16.0.0
- Sidekiq crashes if there are non-ASCII characters in the GitLab.rb file. You can fix this
by following the workaround in [issue 412767](https://gitlab.com/gitlab-org/gitlab/-/issues/412767#note_1404507549).
- Sidekiq jobs are only routed to `default` and `mailers` queues by default, and as a result,
every Sidekiq process also listens to those queues to ensure all jobs are processed across
all queues. This behavior does not apply if you have configured the [routing rules](../administration/sidekiq/processing_specific_job_classes.md#routing-rules).

View File

@ -188,7 +188,7 @@ Completed imports can be re-imported by selecting **Re-import** and specifying n
### Check status of imports
> Details of partially completed imports with a list of entities that failed to import [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/386748) in GitLab 16.0.
> Details of partially completed imports with a list of entities that failed to import [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/386748) in GitLab 16.1.
After imports are completed, they can be in one of three states:

View File

@ -112,6 +112,7 @@ module QA
let(:user) do
Resource::User.fabricate_via_browser_ui! do |user|
user.email_domain = 'gitlab.com'
user.expect_fabrication_success = false
end
end
@ -122,7 +123,6 @@ module QA
after do
set_require_admin_approval_after_user_signup(false)
user.remove_via_api! if user
end
it 'allows user login after approval',