chore: sync code snippets - #4908
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
| @@ -441,4 +441,4 @@ You now have the capability to: | |||
| - [Temporal Python SDK Documentation](https://docs.temporal.io/develop/python). SDK reference for Workflows, Signals, child Workflows, and Worker setup. | |||
There was a problem hiding this comment.
[Temporal.RelativeLinks] Use a relative path instead of the absolute docs.temporal.io URL 'https://docs.temporal.io/develop/python'.
| @@ -441,4 +441,4 @@ You now have the capability to: | |||
| - [Temporal Python SDK Documentation](https://docs.temporal.io/develop/python). SDK reference for Workflows, Signals, child Workflows, and Worker setup. | |||
| - [Child Workflow Executions](https://docs.temporal.io/encyclopedia/child-workflows). How parent and child Workflows interact, including parent close policies. | |||
There was a problem hiding this comment.
[Temporal.RelativeLinks] Use a relative path instead of the absolute docs.temporal.io URL 'https://docs.temporal.io/encyclopedia/child-workflows'.
| @@ -441,4 +441,4 @@ You now have the capability to: | |||
| - [Temporal Python SDK Documentation](https://docs.temporal.io/develop/python). SDK reference for Workflows, Signals, child Workflows, and Worker setup. | |||
| - [Child Workflow Executions](https://docs.temporal.io/encyclopedia/child-workflows). How parent and child Workflows interact, including parent close policies. | |||
| - [Workflow Message Passing](https://docs.temporal.io/encyclopedia/workflow-message-passing). Reference for Signals and Queries. | |||
There was a problem hiding this comment.
[Temporal.RelativeLinks] Use a relative path instead of the absolute docs.temporal.io URL 'https://docs.temporal.io/encyclopedia/workflow-message-passing'.
| @@ -1304,4 +1304,4 @@ The approach isn't limited to games. Any long-lived entity that has to take acti | |||
| - [Search Attributes](https://docs.temporal.io/visibility/search-attributes) | |||
There was a problem hiding this comment.
[Temporal.RelativeLinks] Use a relative path instead of the absolute docs.temporal.io URL 'https://docs.temporal.io/visibility/search-attributes'.
| @@ -1132,4 +1132,4 @@ You've built a loyalty account system where each customer is an independent, sel | |||
| - [Failure Detection — Timeouts, Activity Heartbeating, and Retry Policies](https://docs.temporal.io/develop/python/failure-detection) | |||
There was a problem hiding this comment.
[Temporal.RelativeLinks] Use a relative path instead of the absolute docs.temporal.io URL 'https://docs.temporal.io/develop/python/failure-detection'.
| @@ -726,4 +726,4 @@ By following this guide, you have implemented a time-bound capacity provisioning | |||
| - [Temporal Capacity Modes](https://docs.temporal.io/cloud/capacity-modes) | |||
| - [Temporal Best Practices](https://docs.temporal.io/best-practices) | |||
There was a problem hiding this comment.
[Temporal.RelativeLinks] Use a relative path instead of the absolute docs.temporal.io URL 'https://docs.temporal.io/best-practices'.
| @@ -1060,4 +1060,4 @@ By following this guide, you have implemented a recoverable and compensatable pi | |||
| - [Temporal Queries](https://docs.temporal.io/develop/typescript/message-passing#queries) — Guide to defining and handling synchronous read-only Queries on Workflows. | |||
There was a problem hiding this comment.
[Temporal.RelativeLinks] Use a relative path instead of the absolute docs.temporal.io URL 'https://docs.temporal.io/develop/typescript/message-passing#queries'.
| @@ -1060,4 +1060,4 @@ By following this guide, you have implemented a recoverable and compensatable pi | |||
| - [Temporal Queries](https://docs.temporal.io/develop/typescript/message-passing#queries) — Guide to defining and handling synchronous read-only Queries on Workflows. | |||
| - [Temporal Search Attributes](https://docs.temporal.io/visibility#search-attribute) — Reference for creating and using custom Search Attributes for Workflow visibility. | |||
There was a problem hiding this comment.
[Temporal.RelativeLinks] Use a relative path instead of the absolute docs.temporal.io URL 'https://docs.temporal.io/visibility#search-attribute'.
| @@ -1060,4 +1060,4 @@ By following this guide, you have implemented a recoverable and compensatable pi | |||
| - [Temporal Queries](https://docs.temporal.io/develop/typescript/message-passing#queries) — Guide to defining and handling synchronous read-only Queries on Workflows. | |||
| - [Temporal Search Attributes](https://docs.temporal.io/visibility#search-attribute) — Reference for creating and using custom Search Attributes for Workflow visibility. | |||
| - [Temporal Visibility](https://docs.temporal.io/visibility) — Overview of the Visibility subsystem and List Filter Query syntax. | |||
There was a problem hiding this comment.
[Temporal.RelativeLinks] Use a relative path instead of the absolute docs.temporal.io URL 'https://docs.temporal.io/visibility'.
| - [Temporal Search Attributes](https://docs.temporal.io/visibility#search-attribute) — Reference for creating and using custom Search Attributes for Workflow visibility. | ||
| - [Temporal Visibility](https://docs.temporal.io/visibility) — Overview of the Visibility subsystem and List Filter Query syntax. | ||
| - [ApplicationFailure Reference](https://docs.temporal.io/references/failures#application-failure) — API reference for `ApplicationFailure` including retryable and non-retryable error handling. No newline at end of file | ||
| - [ApplicationFailure Reference](https://docs.temporal.io/references/failures#application-failure) — API reference for `ApplicationFailure` including retryable and non-retryable error handling. |
There was a problem hiding this comment.
[Temporal.RelativeLinks] Use a relative path instead of the absolute docs.temporal.io URL 'https://docs.temporal.io/references/failures#application-failure'.
143b87f to
6be80d7
Compare
6be80d7 to
619fd94
Compare
619fd94 to
6e89d6e
Compare
6e89d6e to
8f0f289
Compare
8f0f289 to
6e9c899
Compare
|
Closing — this PR contains corrupted binary assets due to a snipsync misconfiguration (it scans/rewrites every file under |
snipsync.config.yaml never set features.allowed_target_extensions,
which snipsync defaults to [] ("scan every file under targets/docs").
Its Sync.js reads every scanned file line-by-line as UTF-8 text and
rewrites it the same way, which silently corrupts binary assets
(PNG/SVG) with non-UTF-8 bytes on every daily sync run.
Confirmed on PR #4908: a synced PNG grew from 1.1MB to 2.1MB and is
no longer a valid image (each non-UTF-8 byte, e.g. PNG's 0x89 magic
byte, was replaced with the 3-byte U+FFFD replacement character).
Restricting the scan to .md/.mdx (the only content types docs/
snippets live in) avoids touching the 6 PNGs and 3 SVGs in docs/.
Automated daily sync of code snippets from source repositories via snipsync.
This PR was generated by the Snipsync workflow.
┆Attachments: EDU-6742 chore: sync code snippets