Skip to content

Commit

Permalink
Merge pull request #578 from jmpsec/fix-queries-not-completed
Browse files Browse the repository at this point in the history
Fix to prevent queries not completing
  • Loading branch information
javuto authored Dec 27, 2024
2 parents 884d17d + ed87a7f commit 3851617
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 3851617

Please sign in to comment.