Skip to content

Commit c752b79

Browse files
committed
fixes
1 parent 7a47f56 commit c752b79

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

tests/deploy/hosts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@
1111

1212
[master]
1313
158.250.29.10 ansible_ssh_user=cluster offset=1
14+
15+
[local]
16+
localhost

tests/deploy/roles/postgres/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
when: pg_pidfile.stat.exists
4949

5050
- name: force rebuild on changed sources
51-
command: "rm {{pg_dst}}/bin/postgres"
51+
command: "rm -f {{pg_dst}}/bin/postgres"
5252
when: pg_sources.changed
5353

5454
- name: build and install

tests/perf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22

3-
- hosts: clients
3+
- hosts: clients[0]
44
gather_facts: no
55
tasks:
66

@@ -30,7 +30,7 @@
3030
gather_facts: no
3131
tasks:
3232
- name: run transfers
33-
shell: "~/perf {{connections}} {{runkeys | d('-g -w 64 -r 1 -n 1000 -a 10000')}}"
33+
shell: "~/perf {{connections}} {{runkeys | d('-g -w 8 -r 1 -n 1000 -a 10000')}}"
3434
register: transfers_result
3535
- debug: var=transfers_result
3636

0 commit comments

Comments
 (0)