Skip to content

Commit d64db13

Browse files
committed
fix
1 parent fce6db9 commit d64db13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/api/resource.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1543,7 +1543,7 @@ func (h APIHandler) updateResource(c *gin.Context) error {
15431543
// Patch is used to resubmit the same workflow to the database without modifications.
15441544
// This is useful when making API changes that require resources to be resubmitted to take effect.
15451545
func (h APIHandler) manualTokenPatch(c *gin.Context) {
1546-
resourceName := c.Param("resource_name")
1546+
name := c.Param("name")
15471547
namespace := c.Param("namespace")
15481548
clusterName := c.Param("cluster_name")
15491549

@@ -1564,7 +1564,7 @@ func (h APIHandler) manualTokenPatch(c *gin.Context) {
15641564
AND tfo_resources.namespace = ?
15651565
AND tfo_resources.name = ?
15661566
AND tfo_resource_specs.generation = tfo_resources.current_generation
1567-
`, clusterName, namespace, resourceName).Scan(&tfoResourceSpec)
1567+
`, clusterName, namespace, name).Scan(&tfoResourceSpec)
15681568
if result.Error != nil {
15691569
c.JSON(http.StatusUnprocessableEntity, response(http.StatusUnprocessableEntity, fmt.Sprintf("error getting TFOResourceSpec: %v", result.Error), nil))
15701570
return

0 commit comments

Comments
 (0)