Skip to content
This repository was archived by the owner on Jan 20, 2021. It is now read-only.

Commit 46b5ef4

Browse files
author
Simon Stone
authored
Merge pull request #140 from sstone1/issue-139
Add skip_cache=yes to all IBP HTTP GET requests (resolves #139)
2 parents 3bca2f1 + dd74f83 commit 46b5ef4

16 files changed

+22
-22
lines changed

tasks/saas/create-ca.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
---
55
- name: Get the list of components
66
uri:
7-
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components"
7+
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components?skip_cache=yes"
88
method: GET
99
return_content: yes
1010
headers:
@@ -33,7 +33,7 @@
3333

3434
- name: Get the list of components
3535
uri:
36-
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components"
36+
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components?skip_cache=yes"
3737
method: GET
3838
return_content: yes
3939
headers:

tasks/saas/create-msp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
---
55
- name: Get the list of components
66
uri:
7-
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components"
7+
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components?skip_cache=yes"
88
method: GET
99
return_content: yes
1010
headers:

tasks/saas/create-orderer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
- name: Get the list of components
3131
uri:
32-
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components"
32+
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components?skip_cache=yes"
3333
method: GET
3434
return_content: yes
3535
headers:
@@ -58,7 +58,7 @@
5858

5959
- name: Get the list of components
6060
uri:
61-
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components"
61+
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components?skip_cache=yes"
6262
method: GET
6363
return_content: yes
6464
headers:

tasks/saas/create-peer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
- name: Get the list of components
3131
uri:
32-
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components"
32+
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components?skip_cache=yes"
3333
method: GET
3434
return_content: yes
3535
headers:
@@ -58,7 +58,7 @@
5858

5959
- name: Get the list of components
6060
uri:
61-
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components"
61+
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components?skip_cache=yes"
6262
method: GET
6363
return_content: yes
6464
headers:

tasks/saas/delete-ca.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
---
55
- name: Get the list of components
66
uri:
7-
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components"
7+
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components?skip_cache=yes"
88
method: GET
99
return_content: yes
1010
headers:

tasks/saas/delete-msp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
---
55
- name: Get the list of components
66
uri:
7-
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components"
7+
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components?skip_cache=yes"
88
method: GET
99
return_content: yes
1010
headers:

tasks/saas/delete-orderer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
---
55
- name: Get the list of components
66
uri:
7-
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components"
7+
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components?skip_cache=yes"
88
method: GET
99
return_content: yes
1010
headers:

tasks/saas/delete-peer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
---
55
- name: Get the list of components
66
uri:
7-
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components"
7+
url: "{{ infrastructure.saas.api_endpoint }}/ak/api/v1/components?skip_cache=yes"
88
method: GET
99
return_content: yes
1010
headers:

tasks/software/create-ca.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
---
55
- name: Get the list of components
66
uri:
7-
url: "{{ infrastructure.software.api_endpoint }}/ak/api/v1/components"
7+
url: "{{ infrastructure.software.api_endpoint }}/ak/api/v1/components?skip_cache=yes"
88
url_username: "{{ infrastructure.software.api_key }}"
99
url_password: "{{ infrastructure.software.api_secret }}"
1010
method: GET
@@ -35,7 +35,7 @@
3535

3636
- name: Get the list of components
3737
uri:
38-
url: "{{ infrastructure.software.api_endpoint }}/ak/api/v1/components"
38+
url: "{{ infrastructure.software.api_endpoint }}/ak/api/v1/components?skip_cache=yes"
3939
url_username: "{{ infrastructure.software.api_key }}"
4040
url_password: "{{ infrastructure.software.api_secret }}"
4141
method: GET

tasks/software/create-msp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
---
55
- name: Get the list of components
66
uri:
7-
url: "{{ infrastructure.software.api_endpoint }}/ak/api/v1/components"
7+
url: "{{ infrastructure.software.api_endpoint }}/ak/api/v1/components?skip_cache=yes"
88
url_username: "{{ infrastructure.software.api_key }}"
99
url_password: "{{ infrastructure.software.api_secret }}"
1010
method: GET

0 commit comments

Comments
 (0)