Skip to content

Commit 28798d7

Browse files
authored
Fix static output resource init (#338)
1 parent 20d75a6 commit 28798d7

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ Changelog
33

44
All notable changes to this project will be documented in this file.
55

6+
## 4.63.0 - 2025-12-18
7+
8+
### Added
9+
10+
- New connectivity testing APIs added to the resources builder and stream builder APIs. (@Jeffail)
11+
612
## 4.62.0 - 2025-12-09
713

814
### Added

internal/manager/type.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,9 @@ func New(conf ResourceConfig, opts ...OptFunc) (*Type, error) {
299299
return nil, err
300300
}
301301

302+
if t.consumeTriggered.Load() {
303+
wrappedOutput.TriggerStartConsuming()
304+
}
302305
return &wrappedOutput, nil
303306
})
304307
}

0 commit comments

Comments
 (0)