From a42d17dc5af886c84754d8b27193b1a3e7f9c436 Mon Sep 17 00:00:00 2001 From: m3rc1fulcameron Date: Sun, 7 Jun 2020 21:26:41 -0400 Subject: [PATCH] fix typo --- payload/spacedb/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/payload/spacedb/README.md b/payload/spacedb/README.md index 461ceff..ac9bb4d 100644 --- a/payload/spacedb/README.md +++ b/payload/spacedb/README.md @@ -256,7 +256,7 @@ critical-tel-check info: Scheduler service comms started successfully at: 3.19. We visit the provided URL and find another graphiql interface. According to the [KubOS documentation](https://docs.kubos.com/1.19.0/ecosystem/services/scheduler.html), we may issue the following query to enter safe mode and stop any subsequent checks which might kill the scheduler and bring us back to where we started: ``` mutation safe { -` safeMode{success, errors} + safeMode{success, errors} } ``` We also see that we can dump the task lists for all available modes with the following query: @@ -269,8 +269,7 @@ query dump { From the information from the dumped task lists, we can see that there are several tasks we may run. First and foremost, we need to fix our power situation by orienting the solar panels towards the sun. We may do this by running the following mutation: ``` mutation patch { - -createMode(name: "patch"){success, errors} + createMode(name: "patch"){success, errors} importRawTaskList(name: "patch", mode: "patch", json: "{\"tasks\":[{\"description\":\"Orient solar panels at sun.\",\"delay\":\"0s\",\"time\":null,\"period\":null,\"app\":{\"name\":\"sunpoint\",\"args\":null,\"config\":null}},{\"description\":\"Update system telemetry\",\"delay\":\"1s\",\"time\":null,\"period\":null,\"app\":{\"name\":\"update_tel\",\"args\":null,\"config\":null}}]}"){success, errors} activateMode(name: "patch"){success, errors} }