Skip to content
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

Corrects some typos #66

Merged
merged 3 commits into from
Mar 10, 2024
Merged
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
2 changes: 1 addition & 1 deletion app/library/flux.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def get_job_output(jobid, user=None, delay=None):

jobid = flux.job.JobID(jobid)

# If the submit is too close to the log reqest, it cannot find the file handle
# If the submit is too close to the log request, it cannot find the file handle
# It could be also the jobid cannot be found.
try:
for line in flux.job.event_watch(app.handle, jobid, "guest.output"):
Expand Down
2 changes: 1 addition & 1 deletion app/pages/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<h1>Flux Interface</h1>

<p>
This project uses <a href="https://fastapi.tiangolo.com/">FastAPI</a>, <a href="https://jinja.palletsprojects.com/en/2.11.x/">Jinja2</a>, and <a href="https://getbootstrap.com/docs/4.1/getting-started/introduction/">Bootstrap4</a> to provide a simple user interface and API to programatically interact with Flux.
This project uses <a href="https://fastapi.tiangolo.com/">FastAPI</a>, <a href="https://jinja.palletsprojects.com/en/2.11.x/">Jinja2</a>, and <a href="https://getbootstrap.com/docs/4.1/getting-started/introduction/">Bootstrap4</a> to provide a simple user interface and API to programmatically interact with Flux.
</p>
2 changes: 1 addition & 1 deletion docs/getting_started/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ render data tables and similar.

- data: the list of jobs
- recordsTotal: the total number of jobs available
- recordsFiltered: the total after fitlering by the query, length, start
- recordsFiltered: the total after filtering by the query, length, start
- draw: an integer used by Jquery Datatables

### POST `/v1/jobs/submit`
Expand Down
Loading