maidan
maidan

Reputation: 219

Mailcatcher HTTP/1 is not supported

I am using Mailcatcher when doing testing with codeception in an Github Actions.
Installing it like this:

  - name: Install & run mailcatcher
    run: |
      sudo gem install mailcatcher --no-update-sources --no-document
      mailcatcher

In the acceptance.suite.yml the config is:

modules:
  enabled:
    - Asserts
    - Helper\Acceptance
    - DbHelper
    - Filesystem
    - MailCatcher
  config:
    MailCatcher:
      url: "http://127.0.0.1"
      port: "1080"
      guzzleRequestOptions:
        verify: false
        debug: false
        version: 1.0

Since yesterday when doing this:

$I->resetEmails();

I get this error message:

[GuzzleHttp\Exception\ConnectException] HTTP/1 is not supported by the cURL handler.  

Nothing has changed...?

Upvotes: 0

Views: 42

Answers (0)

Related Questions