Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Registry post release #7090

Merged
merged 1 commit into from
Dec 19, 2024
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
6 changes: 6 additions & 0 deletions backend/canisters/registry/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [unreleased]

## [[2.0.1536](https://github.com/open-chat-labs/open-chat/releases/tag/v2.0.1536-registry)] - 2024-12-19

### Fixed

- Fix notifications index canisterId in already running job ([#7089](https://github.com/open-chat-labs/open-chat/pull/7089))

## [[2.0.1535](https://github.com/open-chat-labs/open-chat/releases/tag/v2.0.1535-registry)] - 2024-12-19

### Fixed
Expand Down
5 changes: 0 additions & 5 deletions backend/canisters/registry/impl/src/timer_job_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ pub struct ExpandOntoSubnetJob {
pub this_canister_id: CanisterId,
pub user_index: CanisterId,
pub group_index: CanisterId,
#[serde(skip_deserializing, default = "notifications_index")]
pub notifications_index: CanisterId,
pub event_relay: CanisterId,
pub cycles_dispenser: CanisterId,
Expand All @@ -32,10 +31,6 @@ pub struct ExpandOntoSubnetJob {
pub create_canister_block_index: Option<u64>,
}

fn notifications_index() -> CanisterId {
CanisterId::from_text("4glvk-ryaaa-aaaaf-aaaia-cai").unwrap()
}

impl Job for TimerJob {
fn execute(self) {
match self {
Expand Down
Loading