Git Product home page Git Product logo

Comments (2)

vzsg avatar vzsg commented on September 26, 2024

The actual error in that printout is:

Fatal error: Error raised at top level: connection reset (error set): Connection refused (errno: 111)

You should focus on this line. Apparently the application could not connect to the database for some reason.

I doubt that it's actually related to the buildpack or the heroku-20 stack (considering the Vapor drivers are built from the ground up with NIO and don't depend on the system libraries), but you could nevertheless try downgrading the stack to heroku-16 or heroku-18.

from heroku-buildpack.

cacaosteve avatar cacaosteve commented on September 26, 2024

Thank you for your help, vzsg. As you said, I used DATABASE_URL environment variable and you helped me turn the dyno off and on again.

if let databaseURL = Environment.get("DATABASE_URL"),
   var config = PostgresConfiguration(url: databaseURL)
{
    config.tlsConfiguration = TLSConfiguration.forClient(certificateVerification: .none)
    app.databases.use(.postgres(configuration: config), as: .psql)
} else {
    app.databases.use(.postgres(
        hostname: Environment.get("DATABASE_HOST") ?? "localhost",
        username: Environment.get("DATABASE_USERNAME") ?? "postgres",
        password: Environment.get("DATABASE_PASSWORD") ?? "password",
        database: Environment.get("DATABASE_NAME") ?? "spark"
    ), as: .psql)
}

from heroku-buildpack.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.