Skip to content

Commit d33287e

Browse files
committed
Replace pghost -> localhost
1 parent 275c21c commit d33287e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/test-postgres.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ jobs:
2222
- uses: ikalnytskyi/action-setup-postgres@v6
2323
- name: Init Test DB
2424
run: |
25-
echo 127.0.0.1 pghost >>/etc/hosts
2625
createuser dotest
2726
createdb --owner dotest dotest
2827
psql -c "ALTER USER dotest WITH PASSWORD 'dotest' SUPERUSER"

Orm/Xtensive.Orm.Tests.Framework/Orm.config

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
connectionUrl="postgresql://dotest:dotest@localhost:54150/dotest" />
7474

7575
<domain name="pgsql160"
76-
connectionUrl="postgresql://dotest:dotest@pghost:5432/dotest" />
76+
connectionUrl="postgresql://dotest:dotest@localhost:5432/dotest" />
7777

7878
<domain name="oracle10"
7979
connectionUrl="oracle://dotest:dotest@localhost:5510/ora10" />
@@ -171,7 +171,7 @@
171171
connectionString="HOST=localhost;PORT=54150;DATABASE=dotest;USER ID=dotest;PASSWORD=dotest" />
172172

173173
<domain name="pgsql160cs" provider="postgresql"
174-
connectionString="HOST=pghost;PORT=5432;DATABASE=dotest;USER ID=dotest;PASSWORD=dotest" />
174+
connectionString="HOST=localhost;PORT=5432;DATABASE=dotest;USER ID=dotest;PASSWORD=dotest" />
175175

176176
<domain name="oracle10cs" provider="oracle"
177177
connectionString="DATA SOURCE=&quot;(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=5510))(CONNECT_DATA=(SERVICE_NAME=ora10)))&quot;;USER ID=dotest;PASSWORD=dotest" />

0 commit comments

Comments
 (0)