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

Fix DAG docstrings so they no longer produce improper HTML #4770

Merged
merged 1 commit into from
Aug 20, 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
4 changes: 2 additions & 2 deletions catalog/dags/maintenance/airflow_log_cleanup_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
'{"maxLogAgeInDays":-1, "enableDelete": "false"}' airflow_log_cleanup
```
`--conf` options:
- maxLogAgeInDays:<INT> - Optional
- enableDelete:<BOOLEAN> - Optional
- maxLogAgeInDays: int, optional
- enableDelete: bool, optional
"""

from datetime import datetime, timedelta
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
Depending on the kind of property data that's being returned, it's possible for the API
to iterate extensively on a specific media item. What Wikimedia is iterating over in
these cases can be gleaned from the "continue" token. Those tokens take the form of,
as I understand it, "<primary-iterator>||<next-iteration-prop>", paired with an
"<XX>continue" value for the property being iterated over. For example, if we're
as I understand it, `<primary-iterator>||<next-iteration-prop>`, paired with an
`<XX>continue` value for the property being iterated over. For example, if we're
were iterating over a set of image properties, the token might look like:

```
Expand Down
6 changes: 3 additions & 3 deletions documentation/catalog/reference/DAGs.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ airflow dags trigger --conf

`--conf` options:

- maxLogAgeInDays:<INT> - Optional
- enableDelete:<BOOLEAN> - Optional
- maxLogAgeInDays: int, optional
- enableDelete: bool, optional

----

Expand Down Expand Up @@ -1159,7 +1159,7 @@ Depending on the kind of property data that's being returned, it's possible for
the API to iterate extensively on a specific media item. What Wikimedia is
iterating over in these cases can be gleaned from the "continue" token. Those
tokens take the form of, as I understand it,
"<primary-iterator>||<next-iteration-prop>", paired with an "<XX>continue" value
`<primary-iterator>||<next-iteration-prop>`, paired with an `<XX>continue` value
for the property being iterated over. For example, if we're were iterating over
a set of image properties, the token might look like:

Expand Down
Loading