amoghrajesh commented on code in PR #70298:
URL: https://github.com/apache/airflow/pull/70298#discussion_r3987961552
##########
registry/src/provider-version.njk:
##########
@@ -403,6 +427,9 @@ eleventyComputed:
{% if module.supports_durable_execution %}
<span class="durable-badge" title="Reconnects to an
already-running job on retry instead of resubmitting. Requires durable=True
(default) and depends on operator configuration.">Durable</span>
{% endif %}
+ {% if module.supports_deferrable %}
+ <span class="deferrable-badge" title="Frees the worker slot
while waiting. If the Triggerer crashes, another one picks it up using the same
trigger class and arguments. Requires deferrable=True.">Deferrable</span>
Review Comment:
Fixed the tooltip text so it doesn't say "you must pass this" for operators
where passing it would actually crash.
##########
registry/src/css/tokens.css:
##########
@@ -96,6 +97,8 @@
--color-rose-600: #e11d48;
--color-teal-400: #2dd4bf;
--color-teal-500: #14b8a6;
+ --color-teal-600: #0d9488;
Review Comment:
Deleted the unused color leftover from an earlier round.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]