在 Azure Logic App 中调用存储过程期间的 GatewayTimeout
GatewayTimeout during call the stored procedure in Azure Logic App
我已经存储了应该 return 一些数据的过程。
当我使用 MS SQL Management studio 调用此过程时,调用需要 1-3 秒。
当我在 Azure 逻辑应用程序中使用 'Execute stored procedure' 或 'Execure SQL Query' 操作调用此过程时,我在等待两分钟后得到 GatewayTimeout 响应。
问题出在参数上。如果我将参数设置为来自逻辑应用程序的字符串变量,并在我的 sql SP 中将此参数用作 cast(@param as varchar(10))
,一切正常。
我已经存储了应该 return 一些数据的过程。
当我使用 MS SQL Management studio 调用此过程时,调用需要 1-3 秒。
当我在 Azure 逻辑应用程序中使用 'Execute stored procedure' 或 'Execure SQL Query' 操作调用此过程时,我在等待两分钟后得到 GatewayTimeout 响应。
问题出在参数上。如果我将参数设置为来自逻辑应用程序的字符串变量,并在我的 sql SP 中将此参数用作 cast(@param as varchar(10))
,一切正常。