Skip to content

Commit

Permalink
fix fid
Browse files Browse the repository at this point in the history
  • Loading branch information
killua-eu committed Jun 27, 2024
1 parent 23c771b commit 095b1e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Controllers/AbstractIf.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public function getActionUUID($deploymentUUID, $requestPath, $requestMethod): mi
*
* @throws \PDOException If there is a database error.
*/
public function cacheValidActionsResponse(string $actionUUID, string $reqParams = "", string $reqPayload = "", string $resId = "", string $resPayload = ""): string
public function cacheValidActionsResponse(string $actionUUID, string $reqParams = "", string $reqPayload = "", string $fid = ""): string
{
$sql = "INSERT INTO {$this->deployments->schema}.if__actions_valid_response_cache
(action_uuid, req_payload, req_params, res_payload, res_id)
Expand All @@ -150,7 +150,7 @@ public function cacheValidActionsResponse(string $actionUUID, string $reqParams
$stmt->bindParam(':reqPayload', $reqPayload);
$stmt->bindParam(':reqParams', $reqParams);
$stmt->bindParam(':resPayload', $resPayload);
$stmt->bindParam(':resId', $resId);
$stmt->bindParam(':fid', $fid);
$stmt->execute();
return $stmt->fetchColumn();
}
Expand Down

0 comments on commit 095b1e6

Please sign in to comment.