Matt

Results 109 comments of Matt

ref: https://issuetracker.google.com/issues/67081578 ref: https://issuetracker.google.com/issues/35897413 From Google Cloud Support team: > Please take note though, that Our App Engine Engineering Team is aware of this feature request and they are currently...

As a work-around, I'm now using: ```go func TestSomethingElse(t *testing.T) { ctx, done, err := aetest.NewContext() if err != nil { t.Fatal(err) } defer done() r := httptest.NewRequest("GET", "/", nil)...

I should notice, I'm testing with `go test`. Maybe I need to use `goapp test`? ref: https://github.com/golang/appengine/issues/115

Same issue here. Here is a snippet that worked for me: ```ruby require 'tasks/standalone_migrations' require 'yaml' StandaloneMigrations::Configurator.environments_config do |env| f = YAML.load_file('config.yml') db = URI.parse(f['postgres']) env.on "default" do |c| c["adapter"]...

I agree. Right now a work-around would be possible with: ``` ruby config.dnsmasq.ip = proc do |guest_machine| guest_machine.communicate.sudo("command to obtain ip somehow") do |type, data| # return something like '192.168.59.100'...

related: https://github.com/mattes/vagrant-dnsmasq/issues/2

I have no reliable data right now unfortunately. Proxying always comes at a cost. Twice as many TCP connections, burnt CPU cycles, more points of failure, ... I think we...

We essentially try to guarantee that a Docker container we start is reachable within less than a second. The fluctuation is high.