Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion jobs/hello.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ job["schedulerOptions"] = [{"arg": f"--account {some_project}"}]
```
We can now submit the job with:
```python

job = t.jobs.submitJob(**job)
```
If successful, the `job` object should look something like.
Expand Down
2 changes: 1 addition & 1 deletion systems/credentials.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ awk -v ORS='\\n' '1' private_key_name
```

It is important to note that these are case sensitive, and as such need to be handled with care. Copy and pasting between systems and languages can be tricky, it is a common error for the following step for the private key to not be able to validate due to hidden copying issues.
When copying down the private key for the following step, make sure to copy all of the lines, including the `-----BEGIN RSA PRIVATE KEY-----\n` & `\n-----END RSA PRIVATE KEY-----\n` and any newline characters.Without this, errors will occur.
When copying down the private key for the following step, make sure to copy all of the lines, including the `-----BEGIN RSA PRIVATE KEY-----\n` & `\n-----END RSA PRIVATE KEY-----\n` and any newline characters. Without this, errors will occur.

## Registering SSH Keys
Copy and paste the following code into your notebook.
Expand Down