Skip to content

Commit

Permalink
Revert "Early finish fix" (agama-project#1546)
Browse files Browse the repository at this point in the history
Reverts agama-project#1544

The change is wrong as it was tested/debugged against old version of
backend that does not have
agama-project@afef47b
... The result is that new sources are now broken.
  • Loading branch information
jreidinger authored Aug 20, 2024
2 parents 9649d9e + 7d3be12 commit f1187eb
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 56 deletions.
2 changes: 1 addition & 1 deletion service/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ build-iPhoneSimulator/
# for a library or gem, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# Gemfile.lock
.ruby-version
# .ruby-version
# .ruby-gemset

# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
Expand Down
5 changes: 0 additions & 5 deletions web/package/agama-web-ui.changes
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
-------------------------------------------------------------------
Mon Aug 19 11:54:07 UTC 2024 - Josef Reidinger <[email protected]>

- Fix early finish of installation (gh#openSUSE/agama#1544)

-------------------------------------------------------------------
Tue Aug 13 14:57:21 UTC 2024 - David Diaz <[email protected]>

Expand Down
48 changes: 0 additions & 48 deletions web/src/api/status.test.ts

This file was deleted.

4 changes: 2 additions & 2 deletions web/src/api/status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import { InstallerStatus } from "~/types/status";
* Returns the installer status information
*/
const fetchInstallerStatus = async (): Promise<InstallerStatus> => {
const { phase, busy, iguana, canInstall } = await get("/api/manager/installer");
return { phase, isBusy: busy.length !== 0, useIguana: iguana, canInstall };
const { phase, isBusy, useIguana, canInstall } = await get("/api/manager/installer");
return { phase, isBusy, useIguana, canInstall };
};

export { fetchInstallerStatus };

0 comments on commit f1187eb

Please sign in to comment.