Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
reshke committed Aug 26, 2024
1 parent 22e6d9a commit 9cdf035
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/message/message.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ func (m MessageType) String() string {
return "CAT"
case MessageTypePut:
return "PUT"
case MessageTypePutV2:
return "PUTV2"
case MessageTypeCommandComplete:
return "COMMAND COMPLETE"
case MessageTypeReadyForQuery:
Expand Down
4 changes: 4 additions & 0 deletions pkg/proc/interaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ func ProcessPutExtended(
}
}()

for _, s := range settings {
ylogger.Zero.Debug().Str("name", s.Name).Str("value", s.Value).Msg("offloadng setting")
}

/* Should go after reader dispatch! */
err := s.PutFileToDest(name, r, settings)

Expand Down

0 comments on commit 9cdf035

Please sign in to comment.