Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix e2e test for hns bucket #2020

Merged
merged 2 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/integration_tests/operations/operations_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func TestMain(m *testing.M) {
// Create storage client before running tests.
ctx := context.Background()
var storageClient *storage.Client
closeStorageClient := client.CreateStorageClientWithTimeOut(&ctx, &storageClient, time.Minute*15)
closeStorageClient := client.CreateStorageClientWithTimeOut(&ctx, &storageClient, time.Minute*40)
defer func() {
err := closeStorageClient()
if err != nil {
Expand Down
3 changes: 0 additions & 3 deletions tools/integration_tests/run_e2e_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -233,9 +233,6 @@ function run_e2e_tests_for_hns_bucket(){

echo "Running tests for HNS bucket"
run_non_parallel_tests TEST_DIR_HNS_GROUP "$hns_bucket_name"
non_parallel_tests_pid_hns_group=$!

wait $non_parallel_tests_pid_hns_group
non_parallel_tests_hns_group_exit_code=$?

hns_buckets=("$hns_bucket_name")
Expand Down
Loading