Skip to content

Commit bf1c99b

Browse files
authored
Merge pull request #153 from ydb-platform/workaround-underscore
workaround for denied with underscore in password
2 parents eea5c10 + b81265c commit bf1c99b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/slo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
if: env.DOCKER_REPO != null # check permissions
2828
env:
2929
DOCKER_REPO: ${{ secrets.SLO_DOCKER_REPO }}
@@ -58,7 +58,7 @@ jobs:
5858
workload_build_context0: ../.
5959
workload_build_options0: -f Dockerfile
6060

61-
- uses: actions/upload-artifact@v3
61+
- uses: actions/upload-artifact@v4
6262
if: always() && env.DOCKER_REPO != null # check permissions and execute, even if the previous stage was failed
6363
env:
6464
DOCKER_REPO: ${{ secrets.SLO_DOCKER_REPO }}

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
run: composer install --prefer-dist --no-progress
6161

6262
- name: Create YDB User
63-
run: docker exec $(docker ps --latest --quiet) /ydb -e grpc://localhost:2136 -d /local scripting yql -s "CREATE USER testuser PASSWORD 'test_password'"
63+
run: docker exec $(docker ps --latest --quiet) /ydb -e grpc://localhost:2136 -d /local scripting yql -s "CREATE USER testuser PASSWORD 'testpassword'"
6464

6565
- name: Run tests
6666
run: ./vendor/bin/phpunit \

tests/StaticCredentialsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function testGetAuthToken()
2727
'iam_config' => [
2828
'insecure' => true,
2929
],
30-
'credentials' => new StaticAuthentication('testuser', 'test_password')
30+
'credentials' => new StaticAuthentication('testuser', 'testpassword')
3131
];
3232
$ydb = new Ydb($config, new SimpleStdLogger(7));
3333
$ydb->table()->query("SELECT 1;");

0 commit comments

Comments
 (0)