This is an automated email from the ASF dual-hosted git repository.
zhangliang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push:
new 6b6571e18e1 Rename agent E2E test to Agent with MySQL (#23408)
6b6571e18e1 is described below
commit 6b6571e18e13c526ca079044d578a6da0337d1d2
Author: Liang Zhang <[email protected]>
AuthorDate: Sun Jan 8 22:06:53 2023 +0800
Rename agent E2E test to Agent with MySQL (#23408)
---
.github/workflows/e2e.yml | 2 +-
agent/core/src/test/resources/logback-test.xml | 29 --------------------------
2 files changed, 1 insertion(+), 30 deletions(-)
diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
index 8a28de338f6..08c60ade46b 100644
--- a/.github/workflows/e2e.yml
+++ b/.github/workflows/e2e.yml
@@ -196,7 +196,7 @@ jobs:
run: ./mvnw -nsu -B install -f test/e2e/suite/pom.xml
-Dspotless.apply.skip=true -Dit.cluster.env.type=DOCKER
-Dit.cluster.adapters=${{ matrix.adapter }} -Dit.run.modes=${{ matrix.mode }}
-Dit.cluster.databases=${{ matrix.database }} -Dit.scenarios=${{
matrix.scenario }}
mysql-proxy-agent:
- name: Agent Metrics & OpenTelemetry
+ name: Agent with MySQL
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
diff --git a/agent/core/src/test/resources/logback-test.xml
b/agent/core/src/test/resources/logback-test.xml
deleted file mode 100644
index d9e399b0b77..00000000000
--- a/agent/core/src/test/resources/logback-test.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0"?>
-<!--
- ~ Licensed to the Apache Software Foundation (ASF) under one or more
- ~ contributor license agreements. See the NOTICE file distributed with
- ~ this work for additional information regarding copyright ownership.
- ~ The ASF licenses this file to You 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.
- -->
-
-<configuration>
- <appender name="console" class="ch.qos.logback.core.ConsoleAppender">
- <encoder>
- <pattern>[%-5level] %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread]
%logger{36} - %msg%n</pattern>
- </encoder>
- </appender>
- <root>
- <level value="warn" />
- <appender-ref ref="console" />
- </root>
-</configuration>