Skip to content

Commit 8854f07

Browse files
authored
fix(fracmanager): broken cache path causing cold start on every run (#239)
1 parent 6504f8c commit 8854f07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fracmanager/loader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ func (l *Loader) discover(ctx context.Context) ([]*frac.Active, []*frac.Sealed,
129129
locals := make([]*frac.Sealed, 0, total)
130130
remotes := make([]*frac.Remote, 0, total)
131131

132-
loadedInfoCache := NewFracInfoCacheFromDisk(l.infoCache.fileName)
132+
loadedInfoCache := NewFracInfoCacheFromDisk(l.infoCache.fullPath)
133133

134134
for i, manifest := range manifests {
135135
switch manifest.Stage() {

0 commit comments

Comments
 (0)