Forum Discussion
1 arguments were passed to a function which expects between 2 and 3
- 10 months ago
Hi BugmanJ,
Here looks like the error is from the gateway or the Power Platform Dataflows connector. Your code looks fine and this issue happens intermittently when the connector or gateway gets an incomplete or invalid response response from the power platform service. Please follow below steps:
- In your dataflow, remove the [EnableFolding = true] part and use this instead:
Source = PowerPlatform.Dataflows(null) - Save and refresh the dataflow again.
- If it still fails with the same error, then it is a transient gateway or service glitch. So just restart the gateway service or refresh again later, it will start working once the service returns valid data.
Thanks and regards,
Anjan Kumar Chippa
- In your dataflow, remove the [EnableFolding = true] part and use this instead:
It's probably not an issue, but what's the purpose of the '[EnableFolding = true]'?
As far as I'm aware, the typical statement is 'PowerPlatform.Dataflows(null)'.
Is there a gateway involved further upstream?
'GatewayClientErrorResponseException[GatewayId=1408102]'
Maybe check the gateway logs for any clues.
- BugmanJ10 months agoHelper V
[quote]It's probably not an issue, but what's the purpose of the '[EnableFolding = true]'? As far as I'm aware, the typical statement is 'PowerPlatform.Dataflows(null)'.[/quote]
Correct, but it won't take (null) and enablefolding=true is the only parameter it will take.Going with a gateway error
- v-achippa10 months agoCommunity Support
Hi BugmanJ,
Here looks like the error is from the gateway or the Power Platform Dataflows connector. Your code looks fine and this issue happens intermittently when the connector or gateway gets an incomplete or invalid response response from the power platform service. Please follow below steps:
- In your dataflow, remove the [EnableFolding = true] part and use this instead:
Source = PowerPlatform.Dataflows(null) - Save and refresh the dataflow again.
- If it still fails with the same error, then it is a transient gateway or service glitch. So just restart the gateway service or refresh again later, it will start working once the service returns valid data.
Thanks and regards,
Anjan Kumar Chippa
- In your dataflow, remove the [EnableFolding = true] part and use this instead: