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 b1cf5c72934 Refactor ShardingSphereProxyEmbeddedContainer (#36638)
b1cf5c72934 is described below

commit b1cf5c72934cfb4224573eea5ecc7b113e504156
Author: Liang Zhang <[email protected]>
AuthorDate: Fri Sep 19 20:10:13 2025 +0800

    Refactor ShardingSphereProxyEmbeddedContainer (#36638)
---
 .../adapter/impl/ShardingSphereProxyEmbeddedContainer.java          | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git 
a/test/e2e/env/src/test/java/org/apache/shardingsphere/test/e2e/env/container/adapter/impl/ShardingSphereProxyEmbeddedContainer.java
 
b/test/e2e/env/src/test/java/org/apache/shardingsphere/test/e2e/env/container/adapter/impl/ShardingSphereProxyEmbeddedContainer.java
index ac948c1fce4..9ad7169e6b9 100644
--- 
a/test/e2e/env/src/test/java/org/apache/shardingsphere/test/e2e/env/container/adapter/impl/ShardingSphereProxyEmbeddedContainer.java
+++ 
b/test/e2e/env/src/test/java/org/apache/shardingsphere/test/e2e/env/container/adapter/impl/ShardingSphereProxyEmbeddedContainer.java
@@ -17,7 +17,6 @@
 
 package org.apache.shardingsphere.test.e2e.env.container.adapter.impl;
 
-import lombok.Setter;
 import lombok.SneakyThrows;
 import lombok.extern.slf4j.Slf4j;
 import org.apache.commons.io.IOUtils;
@@ -80,9 +79,6 @@ public final class ShardingSphereProxyEmbeddedContainer 
implements AdapterContai
     
     private final Set<Startable> dependencies = new HashSet<>();
     
-    @Setter
-    private String abbreviation = 
ProxyContainerConstants.PROXY_CONTAINER_ABBREVIATION;
-    
     private ShardingSphereProxy proxy;
     
     public ShardingSphereProxyEmbeddedContainer(final DatabaseType 
databaseType, final AdaptorContainerConfiguration config) {
@@ -103,7 +99,7 @@ public final class ShardingSphereProxyEmbeddedContainer 
implements AdapterContai
     
     @Override
     public String getAbbreviation() {
-        return abbreviation;
+        return ProxyContainerConstants.PROXY_CONTAINER_ABBREVIATION;
     }
     
     @Override

Reply via email to