2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Azure LogicAppsのforeachでまわしても思った順番で処理されていないとき

Posted at

起こり

AzureのロジックアプリでInsightのクエリ結果からぐるぐる回してSlack通知にしていた。
ところが、クエリで出てきた順番とメッセージ内容が合わない。
(クエリ結果はソートされてるのに、メッセージは順番ばらばらになってる)

調べた

https://stackoverflow.com/questions/68128323/azure-logic-app-append-variable-within-for-each-is-incoherent
どうやらForeachは順番に処理されるのでなく、いくつか並行で行われるみたい。
なので上記URLの通りに並行実行を1にすると順番どおりにメッセージが出てきた。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?