gateway testcast update (#3652)
* gateway testcast update * bugfix * remove -u
This commit is contained in:
parent
56bfbd61ef
commit
4fdf9d08a0
|
|
@ -123,7 +123,7 @@ agent_home_selector() {
|
|||
|
||||
target_agent_home=${workspace}/${target_agent_dir}
|
||||
mkdir -p ${target_agent_home}
|
||||
cp -fur ${agent_home}/* ${target_agent_home}
|
||||
cp -fr ${agent_home}/* ${target_agent_home}
|
||||
|
||||
with_plugins=`echo $with_plugins |sed -e "s/;/ /g"`
|
||||
for plugin in ${with_plugins};
|
||||
|
|
|
|||
|
|
@ -20,3 +20,4 @@ healthCheck: http://localhost:8080/provider/b/healthCheck
|
|||
startScript: ./bin/startup.sh
|
||||
framework: spring-cloud-gateway
|
||||
runningMode: with_optional
|
||||
withPlugins: apm-spring-cloud-gateway-2.x-plugin-*.jar
|
||||
|
|
|
|||
|
|
@ -18,7 +18,9 @@
|
|||
package org.apache.skywalking.apm.testcase.sc.gateway.projectA;
|
||||
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
@Configuration
|
||||
public class TestFilterConfig {
|
||||
|
||||
@Bean
|
||||
|
|
|
|||
|
|
@ -24,7 +24,4 @@ spring:
|
|||
- id: provider_route
|
||||
uri: http://localhost:18070
|
||||
predicates:
|
||||
- Path=/provider/b/*
|
||||
endpoints:
|
||||
refresh:
|
||||
sensitive: false
|
||||
- Path=/provider/b/*
|
||||
Loading…
Reference in New Issue