Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Wang <[email protected]>
  • Loading branch information
whynowy committed Oct 5, 2023
1 parent e99ad88 commit 1280a16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/sideinputs/initializer/initializer.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func startSideInputInitializer(ctx context.Context, store kvs.KVStorer, mountPat
m[value.Key()] = value.Value()
// Wait for the data to be ready in the side input store, and then copy it to the disk
if gotAllSideInputVals(sideInputs, m) {
for sideInput := range m {
for _, sideInput := range sideInputs {
p := path.Join(mountPath, sideInput)
log.Infof("Initializing Side Input data for %q", sideInput)
err := utils.UpdateSideInputFile(ctx, p, m[sideInput])
Expand Down

0 comments on commit 1280a16

Please sign in to comment.