Skip to content
代码片段 群组 项目
未验证 提交 c1149c14 编辑于 作者: Tiffany Rea's avatar Tiffany Rea 提交者: GitLab
浏览文件

Merge branch '499660-disable-maven-expect-header' into 'master'

Disable the Expect header in QA Maven specs

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/171828



Merged-by: default avatarTiffany Rea <trea@gitlab.com>
Approved-by: default avatarTiffany Rea <trea@gitlab.com>
Reviewed-by: default avatarDavid Fernandez <dfernandez@gitlab.com>
Reviewed-by: default avatarJay McCure <jmccure@gitlab.com>
Co-authored-by: default avatarDavid Fernandez <dfernandez@gitlab.com>
No related branches found
No related tags found
无相关合并请求
......@@ -9,6 +9,12 @@ xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.o
<name><%= maven_header_name %></name>
<value><%= token %></value>
</property>
<!-- Disable the expect header as some proxies don't play nice with it. See https://maven.apache.org/guides/mini/guide-http-settings.html#The_Basics. -->
<!-- See https://gitlab.com/gitlab-org/gitlab/-/issues/499660 -->
<property>
<name>Expect</name>
<value />
</property>
</httpHeaders>
</configuration>
</server>
......
......@@ -9,6 +9,12 @@
<name>Private-Token</name>
<value>${PERSONAL_ACCESS_TOKEN}</value>
</property>
<!-- Disable the expect header as some proxies don't play nice with it. See https://maven.apache.org/guides/mini/guide-http-settings.html#The_Basics. -->
<!-- See https://gitlab.com/gitlab-org/gitlab/-/issues/499660 -->
<property>
<name>Expect</name>
<value />
</property>
</httpHeaders>
</configuration>
</server>
......
......@@ -9,6 +9,12 @@ xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.o
<name><%= maven_header_name %></name>
<value><%= token %></value>
</property>
<!-- Disable the expect header as some proxies don't play nice with it. See https://maven.apache.org/guides/mini/guide-http-settings.html#The_Basics. -->
<!-- See https://gitlab.com/gitlab-org/gitlab/-/issues/499660 -->
<property>
<name>Expect</name>
<value />
</property>
</httpHeaders>
</configuration>
</server>
......
......@@ -2,11 +2,7 @@
module QA
RSpec.describe 'Package', :object_storage, product_group: :package_registry do
describe 'Maven group level endpoint', :external_api_calls, quarantine: {
type: :investigating,
issue: "https://gitlab.com/gitlab-org/gitlab/-/issues/499660",
only: { job: /gdk-qa-.*/ }
} do
describe 'Maven group level endpoint', :external_api_calls do
include Runtime::Fixtures
include Support::Helpers::MaskToken
include_context 'packages registry qa scenario'
......
......@@ -2,11 +2,7 @@
module QA
RSpec.describe 'Package', :object_storage, :external_api_calls do
describe 'Maven project level endpoint', product_group: :package_registry, quarantine: {
type: :investigating,
issue: "https://gitlab.com/gitlab-org/gitlab/-/issues/499660",
only: { job: /gdk-qa-.*/ }
} do
describe 'Maven project level endpoint', product_group: :package_registry do
include Runtime::Fixtures
include Support::Helpers::MaskToken
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册