diff --git a/echo-web/src/main/java/com/netflix/spinnaker/config/WebConfigOverrides.java b/echo-web/src/main/java/com/netflix/spinnaker/config/WebConfigOverrides.java deleted file mode 100644 index 7e1a81039..000000000 --- a/echo-web/src/main/java/com/netflix/spinnaker/config/WebConfigOverrides.java +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright 2026 Netflix, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.netflix.spinnaker.config; - -import org.springframework.context.annotation.Configuration; -import org.springframework.core.Ordered; -import org.springframework.core.annotation.Order; -import org.springframework.security.config.annotation.ObjectPostProcessor; -import org.springframework.security.config.annotation.web.builders.HttpSecurity; -import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; -import org.springframework.security.web.header.HeaderWriterFilter; - -@Configuration -@Order(Ordered.HIGHEST_PRECEDENCE + 5) -public class WebConfigOverrides extends WebSecurityConfigurerAdapter { - - @Override - protected void configure(HttpSecurity http) throws Exception { - http.headers() - .addObjectPostProcessor( - new ObjectPostProcessor() { - @Override - public HeaderWriterFilter postProcess(HeaderWriterFilter filter) { - filter.setShouldWriteHeadersEagerly(true); - return filter; - } - }); - } -}