New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Ticket #25373 (closed defect: fixed)

Opened 3 years ago

Last modified 2 years ago

couchdb crash on start after erlang upgrade to R14A

Reported by: jeff-macports@… Owned by: jwa@…
Priority: Normal Milestone:
Component: ports Version: 1.9.1
Keywords: Cc: bruno@…, bradley.holt@…
Port: couchdb

Description

See apache issue COUCHDB-805.

After installing Erlang R14A couchdb won't start. ssl application initialization failure
due to public_key application not being started.

Adding public_key into start_apps sequence in src/couchdb/couch_app.erl fixed the problem. 

- case start_apps([crypto, sasl, inets, oauth, ssl, ibrowse, mochiweb]) of 
+ case start_apps([crypto, public_key, sasl, inets, oauth, ssl, ibrowse, mochiweb]) of 

Change History

comment:1 Changed 3 years ago by ryandesign@…

  • Priority changed from High to Normal
  • Owner changed from macports-tickets@… to jwa@…
  • Cc jwa@… removed

High priority tickets are reserved for MacPorts team members to create.

comment:2 Changed 3 years ago by bruno@…

  • Cc bruno@… added

Cc Me!

comment:3 Changed 3 years ago by bradley.holt@…

  • Cc bradley.holt@… added

Cc Me!

comment:4 Changed 3 years ago by jeff-macports@…

This issue has been fixed with the release of couchdb 1.0.0.

comment:5 Changed 2 years ago by jmr@…

  • Status changed from new to closed
  • Resolution set to fixed
Note: See TracTickets for help on using tickets.