Skip to content

Commit

Permalink
clarify ops ordering based on ansible 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hellt committed Dec 6, 2024
1 parent c5d4998 commit 420010e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/ansible/collection/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ In the example below, the module is stuffed with multiple updates, replaces and

Config module uses JSON-RPC interface of SR Linux, and in particular, its [`Set` method](../../tutorials/programmability/json-rpc/basics.md#set). Upon receiving the Set method, SR Linux opens a private named candidate configuration and applies the operations in the following order:

1. updates
1. deletes
2. replaces
3. deletes
3. updates

Note, that the operations that are part of the module's task are not committed independently, they are applied strictly together in the "all or nothing" fashion. When we say that the operations are applied in that order, we mean that changes get applied to the candidate configuration in that order. No commit happens just yet.

Expand Down
2 changes: 1 addition & 1 deletion docs/blog/posts/2023/ansible-collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ In this blog post, we would like to share some details about our design decision

## Deficiencies of the URI module

The URI module is a great tool for making REST API calls. It is very flexible, generic and can be used to make any type of HTTP/RESTAPI calls. However, its generic nature can also be seen as a drawback.
The URI module is a great tool for making REST API calls. It is very flexible, generic and can be used to make any type of HTTP/REST API calls. However, its generic nature can also be seen as a drawback.

### Verbosity

Expand Down

0 comments on commit 420010e

Please sign in to comment.