Skip to content
This repository was archived by the owner on Dec 17, 2024. It is now read-only.

Commit da76538

Browse files
committed
update host set local to new vagrant IP address
Fixes #850
1 parent a29eaff commit da76538

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/plugins/ui/commands/auth.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,9 @@ module.exports = (commandTree, prequire) => {
318318
isLocal = true
319319
} else if (host === 'local' || host === 'localhost') {
320320
// try a variety of options
321-
const variants = [ 'https://192.168.33.13', 'http://172.17.0.1:10001', 'http://192.168.99.100:10001' ]
321+
const variants = [ 'https://192.168.33.13', 'https://192.168.33.16', // these are vagrant
322+
'http://172.17.0.1:10001', 'http://192.168.99.100:10001' // these are direct-to-controller
323+
]
322324
const request = require('request')
323325

324326
host = new Promise((resolve, reject) => {

0 commit comments

Comments
 (0)