Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit e0f7ca2

Browse files
cleanup
1 parent 32f11ac commit e0f7ca2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ If are using this module in a browser with something like browserify, then you w
9999

100100
```bash
101101
$ ipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin "[\"http://example.com\"]"
102-
$ ipfs config --json API.HTTPHeaders.Access-Control-Allow-Credentials "\"true\""
102+
$ ipfs config --json API.HTTPHeaders.Access-Control-Allow-Credentials "[\"true\"]"
103103
$ ipfs config --json API.HTTPHeaders.Access-Control-Allow-Methods "[\"PUT\", \"POST\", \"GET\"]"
104104
```
105105

test/factory/daemon-spawner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function spawnEphemeralNode (callback) {
7272
series([
7373
(cb) => {
7474
const configValues = {
75-
// Bootstrap: [],
75+
Bootstrap: [],
7676
Discovery: {},
7777
'HTTPHeaders.Access-Control-Allow-Origin': ['*'],
7878
'HTTPHeaders.Access-Control-Allow-Credentials': 'true',

test/setup/spawn-daemons.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function startDisposableDaemons (callback) {
2626
console.log(' ipfs init done - (bootstrap and mdns off) - ' + key)
2727

2828
const configValues = {
29-
// Bootstrap: [],
29+
Bootstrap: [],
3030
Discovery: {},
3131
'HTTPHeaders.Access-Control-Allow-Origin': ['*'],
3232
'HTTPHeaders.Access-Control-Allow-Credentials': 'true',

0 commit comments

Comments
 (0)