Remove PacketPipelineSetup to fix application startup crash

The PacketPipelineSetup was attempting to subscribe to a single
PacketConsumer process that doesn't exist. The application uses
PacketConsumerPool which automatically handles subscriptions for
multiple consumer processes, making PacketPipelineSetup redundant
and causing startup failures.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Graham McIntire 2025-07-19 15:15:06 -05:00
parent ad2d9c14cf
commit e41118a243
No known key found for this signature in database

View file

@ -55,9 +55,7 @@ defmodule Aprsme.Application do
Aprsme.Presence,
Aprsme.PostgresNotifier,
# Start the packet processing pipeline
Aprsme.PacketPipelineSupervisor,
# Start the packet pipeline setup
Aprsme.PacketPipelineSetup
Aprsme.PacketPipelineSupervisor
]
children = maybe_add_is_supervisor(children, Application.get_env(:aprsme, :env))