Skip to content

Commit 92d696a

Browse files
committed
Fixed os ci
1 parent 243b942 commit 92d696a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
node.name: os-test
118118
discovery.type: single-node
119119
OPENSEARCH_JAVA_OPTS: -Xms512m -Xmx512m -Dopensearch.memory_lock=true
120-
OPENSEARCH_INITIAL_ADMIN_PASSWORD: "%22ScoRpi0n$%22"
120+
OPENSEARCH_INITIAL_ADMIN_PASSWORD: MyP@ssw0rd123 # example value of a secret compliant with MS SQL Server password policy
121121
bootstrap.memory_lock: "true"
122122
network.host: "0.0.0.0"
123123
http.port: 9200

db/es/es_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515

1616
const (
1717
esConnString = "es://0.0.0.0:9200"
18-
openSearchConnString = "opensearch://admin:%22ScoRpi0n$%22@0.0.0.0:9201" // example value of a secret compliant with OpenSearch password requirements
18+
openSearchConnString = "opensearch://admin:MyP%40ssw0rd123@0.0.0.0:9201" // example value of a secret compliant with OpenSearch password requirements
1919
)
2020

2121
type TestingSuite struct {

0 commit comments

Comments
 (0)