Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Use `box.schema.needs_upgrade` instead of `box.schema_needs_upgrade` (#529)

### Removed

# [1.6.0] - 2025-10-14
Expand Down
2 changes: 1 addition & 1 deletion metrics/tarantool/schema.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ local function update_schema_metrics()
return
end

local ok, needs_upgrade = pcall(box.schema_needs_upgrade)
local ok, needs_upgrade = pcall(box.schema.needs_upgrade)
if not ok then
ok, needs_upgrade = pcall(box.internal.schema_needs_upgrade)
end
Expand Down
Loading