Skip to content

Commit

Permalink
Fixes & nitpick
Browse files Browse the repository at this point in the history
  • Loading branch information
reshke committed Aug 26, 2024
1 parent 9cdf035 commit 132a7b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion pkg/proc/interaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func ProcessPutExtended(
}()

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

/* Should go after reader dispatch! */
Expand Down Expand Up @@ -191,6 +191,8 @@ func ProcConn(s storage.StorageInteractor, cr crypt.Crypter, ycl client.YproxyCl
msg := message.PutMessageV2{}
msg.Decode(body)

// ylogger.Zero.Debug().Bytes("msg", body).Msg("log info")

if err := ProcessPutExtended(s, pr, msg.Name, msg.Encrypt, msg.Settings, cr, ycl); err != nil {
return err
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/tablespace/tablespace.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package tablespace

const DefaultTableSpace = "BASE"
const DefaultTableSpace = "pg_default"

0 comments on commit 132a7b5

Please sign in to comment.