-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* default appup * restart servicecachesupervisor * start dashboard new processes * delete poller from supervisor * add summary cache code_change to register to new event * restart the statscollector * add migration to start the jobcacheregistry * bump version 1.4.3
- Loading branch information
Showing
4 changed files
with
927 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
priv/migration_tasks/prod/1.4.3@jobcacheregistry_start.exs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
defmodule Migration_1_4_3 do | ||
@moduledoc """ | ||
Start the JobCacheRegistry which is a child of Application | ||
""" | ||
|
||
def run() do | ||
{:ok, _} = | ||
Supervisor.start_child( | ||
Archethic.Supervisor, | ||
{Registry, keys: :unique, name: Archethic.Utils.JobCacheRegistry} | ||
) | ||
|
||
:ok | ||
end | ||
end |
Oops, something went wrong.