Server gets rebooted through hard provider API reset #266

Closed
opened 2023-08-02 21:37:58 +03:00 by NaiJi · 1 comment
Collaborator
Future<ServerHostingDetails> restart() async {
    . . . .
    final result = await ProvidersController.currentServerProvider!.restart(
      server.id,
    );
    . . . .
}

Restart method calls provider hard reset which is an overkill and may cause file system damage during installation (occasionally happens already)

Need to replace with direct API server call for normal restart

```dart Future<ServerHostingDetails> restart() async { . . . . final result = await ProvidersController.currentServerProvider!.restart( server.id, ); . . . . } ``` Restart method calls provider hard reset which is an overkill and may cause file system damage during installation (occasionally happens already) Need to replace with direct API server call for normal restart
NaiJi added the
Bug
label 2023-08-02 21:37:58 +03:00
NaiJi self-assigned this 2023-08-02 21:37:58 +03:00
Poster
Collaborator

Is pending on PR 269.

Is pending on [PR 269](https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.app/pulls/269).
NaiJi added the
Priority
Medium
label 2023-08-03 08:20:37 +03:00
inex closed this issue 2023-08-14 07:42:14 +03:00
inex removed the
Priority
Medium
label 2023-08-14 07:42:17 +03:00
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: SelfPrivacy/selfprivacy.org.app#266
There is no content yet.