Skip to content

Commit

Permalink
reconciler
Browse files Browse the repository at this point in the history
  • Loading branch information
eedorenko committed Dec 17, 2024
1 parent 737cc09 commit 3dc9746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/postgres/reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ var _ QueryFunc = GetByManifestsEndpoint

func GetByManifestsEndpoint(conn *sql.DB, args ...interface{}) ([]Entity, error) {

rows, err := conn.Query(`SELECT id, name, host_id, description, reconciler_type, labels, manifests_storage_type, manifests_endpoint FROM reconciler WHERE manifests_endpoint like "$1%"`, args[0])
rows, err := conn.Query(`SELECT id, name, host_id, description, reconciler_type, labels, manifests_storage_type, manifests_endpoint FROM reconciler WHERE manifests_endpoint like '$1%'`, args[0])
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 3dc9746

Please sign in to comment.