Skip to content

Commit 1852fc6

Browse files
Copilotfiftin
andauthored
Fix integration survey values not being loaded during webhook execution (#3254)
* Initial plan * Fix integration survey values not being loaded during execution Co-authored-by: fiftin <[email protected]> * Fix empty test by adding proper regression test for integration survey values Co-authored-by: fiftin <[email protected]> * Delete db/sql/integration_alias_test.go --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: fiftin <[email protected]> Co-authored-by: Denis Gukov <[email protected]>
1 parent 8072684 commit 1852fc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db/sql/integration_alias.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ func (d *SqlDb) GetIntegrationsByAlias(alias string) (res []db.Integration, leve
6767
if aliasObj.IntegrationID == nil {
6868
level = db.IntegrationAliasProject
6969
var projIntegrations []db.Integration
70-
projIntegrations, err = d.GetIntegrations(aliasObj.ProjectID, db.RetrieveQueryParams{}, false)
70+
projIntegrations, err = d.GetIntegrations(aliasObj.ProjectID, db.RetrieveQueryParams{}, true)
7171
if err != nil {
7272
return
7373
}

0 commit comments

Comments
 (0)