-
Notifications
You must be signed in to change notification settings - Fork 69
fix(storage): keep storage config after registration #2532
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
Changes from all commits
b8ada28
5629679
c04e68c
0e315f0
38de027
a47b0c1
96ab6f1
f8e6b54
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,9 @@ | ||
| ------------------------------------------------------------------- | ||
| Fri Jul 4 11:33:44 UTC 2025 - José Iván López González <[email protected]> | ||
|
|
||
| - Reprobe the system after registering the product | ||
| (gh#agama-project/agama#2532, bsc#1245400). | ||
|
|
||
| ------------------------------------------------------------------- | ||
| Wed Jul 2 16:02:07 UTC 2025 - Imobach Gonzalez Sosa <[email protected]> | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,9 @@ | ||
| ------------------------------------------------------------------- | ||
| Fri Jul 4 11:31:21 UTC 2025 - José Iván López González <[email protected]> | ||
|
|
||
| - Extend D-Bus API to allow reprobing the system | ||
| (gh#agama-project/agama#2532, bsc#1245400). | ||
|
|
||
| ------------------------------------------------------------------- | ||
| Wed Jul 2 10:50:56 UTC 2025 - José Iván López González <[email protected]> | ||
|
|
||
|
|
@@ -19,7 +25,7 @@ Mon Jun 30 11:23:03 UTC 2025 - Martin Vidner <[email protected]> | |
| Fri Jun 27 14:02:57 UTC 2025 - Michal Filka <[email protected]> | ||
|
|
||
| - jsc#PED-11193 | ||
| - do not create the "after install" snapshot | ||
| - do not create the "after install" snapshot | ||
|
|
||
| ------------------------------------------------------------------- | ||
| Fri Jun 27 12:07:35 UTC 2025 - Imobach Gonzalez Sosa <[email protected]> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,9 @@ | ||
| ------------------------------------------------------------------- | ||
| Fri Jul 4 11:34:59 UTC 2025 - José Iván López González <[email protected]> | ||
|
|
||
| - Reprobe the system after registering the product | ||
| (gh#agama-project/agama#2532, bsc#1245400). | ||
|
|
||
| ------------------------------------------------------------------- | ||
| Tue Jul 1 12:57:50 UTC 2025 - Lubos Kocman <[email protected]> | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| /* | ||
| * Copyright (c) [2024] SUSE LLC | ||
| * Copyright (c) [2024-2025] SUSE LLC | ||
| * | ||
| * All Rights Reserved. | ||
| * | ||
|
|
@@ -32,6 +32,11 @@ const startProbing = () => post("/api/manager/probe"); | |
| */ | ||
| const probe = () => post("/api/manager/probe_sync"); | ||
|
|
||
| /** | ||
| * Triggers a synchronous reprobing process. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Jus a question, does Agama server provide their async counterparts? Asking because I also see in manager "probe_sync" and "probe".
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, an async version is not needed yet.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Anyway, all this about sync/async probing/reprobing is something to revisit. For now, just following the current approach.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Great then. Thank you |
||
| */ | ||
| const reprobe = () => post("/api/manager/reprobe_sync"); | ||
|
|
||
| /** | ||
| * Starts the installation process. | ||
| * | ||
|
|
@@ -49,4 +54,4 @@ const finishInstallation = () => post("/api/manager/finish"); | |
| */ | ||
| const fetchLogs = () => get("/api/manager/logs/store"); | ||
|
|
||
| export { startProbing, probe, startInstallation, finishInstallation, fetchLogs }; | ||
| export { startProbing, probe, reprobe, startInstallation, finishInstallation, fetchLogs }; | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤯