Skip to content

Commit

Permalink
Fix to prevent queries not completing
Browse files Browse the repository at this point in the history
  • Loading branch information
javuto committed Dec 27, 2024
1 parent 884d17d commit ed87a7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion queries/queries.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ type NodeQuery struct {
gorm.Model
NodeID uint `gorm:"not null;index"`
QueryID uint `gorm:"not null;index"`
Status string `gorm:"type:varchar(8);default:'pending'"`
Status string `gorm:"type:varchar(10);default:'pending'"`
}

// DistributedQueryTarget to keep target logic for queries
Expand Down

0 comments on commit ed87a7f

Please sign in to comment.