From 2fa63515f1447734d03030e8d2d56e29b9620ae0 Mon Sep 17 00:00:00 2001 From: robot Date: Thu, 7 Sep 2023 16:15:36 +0300 Subject: [PATCH] try change slo actor --- .github/workflows/slo.yml | 2 +- slo/src/Cli/CliCommands.cs | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/slo.yml b/.github/workflows/slo.yml index 31d5b88c..27909df1 100644 --- a/.github/workflows/slo.yml +++ b/.github/workflows/slo.yml @@ -29,7 +29,7 @@ jobs: DOCKER_REPO: ${{ secrets.SLO_DOCKER_REPO }} - name: Run SLO - uses: ydb-platform/slo-tests@js-version + uses: ydb-platform/slo-tests@php-version if: env.DOCKER_REPO != null env: DOCKER_REPO: ${{ secrets.SLO_DOCKER_REPO }} diff --git a/slo/src/Cli/CliCommands.cs b/slo/src/Cli/CliCommands.cs index 8130ba83..d5b9297f 100644 --- a/slo/src/Cli/CliCommands.cs +++ b/slo/src/Cli/CliCommands.cs @@ -17,12 +17,6 @@ internal static async Task Create(CreateConfig createConfig) createConfig.Db ); - var fieldInfo = config - .GetType() - .GetRuntimeFields() - .FirstOrDefault(fi => Regex.IsMatch(fi.Name, "\\AEndpointDiscoveryTimeout\\Z")); - fieldInfo?.SetValue(config, TimeSpan.FromMinutes(2)); - await using var driver = await Driver.CreateInitialized(config); using var tableClient = new TableClient(driver);