Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions platform/fabricx/sdk/dig/sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ func (p *SDK) Install() error {
}

func (p *SDK) Start(ctx context.Context) error {
if !p.FabricEnabled() {
return p.SDK.Start(ctx)
}

// Wire the finality Listener Manager Provider with the application's root context.
// This context is cancelled when the FSC application shuts down.
// By initializing the provider with this context, we ensure that during shutdown,
Expand Down
Loading