This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/master by this push:
new a1e2cb95b chore(go): delete redundant script run_tcp_e2e.sh (#3065)
a1e2cb95b is described below
commit a1e2cb95b7cdea994b308de9dd3ea8b5582b0ad5
Author: Chengxi Luo <[email protected]>
AuthorDate: Tue Apr 7 04:32:55 2026 -0400
chore(go): delete redundant script run_tcp_e2e.sh (#3065)
---
foreign/go/scripts/run_tcp_e2e.sh | 28 ----------------------------
1 file changed, 28 deletions(-)
diff --git a/foreign/go/scripts/run_tcp_e2e.sh
b/foreign/go/scripts/run_tcp_e2e.sh
deleted file mode 100755
index 11b8cb3fc..000000000
--- a/foreign/go/scripts/run_tcp_e2e.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-# 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.
-
-
-# Change to the directory where your E2E tests are located
-cd "$(dirname "$0")/../e2e/tcp_test" || exit
-
-# Assuming you have 'ginkgo' installed, you can use it to run your Ginkgo tests
-# -r randomizes the order of the tests
-ginkgo -r
-
-# Optionally, you can also add commands to perform post-test actions or
cleanup here
-# For example, stopping services or generating test reports