Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Fixed

- Fix launch on ro instance with is_master_only = true

## 1.6.0 - 2024-03-25

The release introduces a role for Tarantool 3.0.
Expand Down
2 changes: 1 addition & 1 deletion roles/expirationd.lua
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ local function load_task(task_conf, task_name)

fiber.name(role_name .. ":" .. task_name)

local skip = task_conf.is_master_only and not box.info.ro
local skip = task_conf.is_master_only and box.info.ro
if skip then
return
end
Expand Down
Loading