Skip to content

Commit

Permalink
fix(eloqua): destType issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mihir-4116 committed Mar 14, 2024
1 parent d4948f8 commit 851b63b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -23,7 +23,7 @@ func NewManager(destination *backendconfig.DestinationT) (*EloquaBulkUploader, e
return nil, fmt.Errorf("error in unmarshalling destination config: %v", err)
}
authorization := destConfig.CompanyName + "\\" + destConfig.UserName + ":" + destConfig.Password
destName := destination.DestinationDefinition.Name + ":" + destination.Name
destName := destination.DestinationDefinition.Name

Check warning on line 26 in router/batchrouter/asyncdestinationmanager/eloqua/manager.go

View check run for this annotation

Codecov / codecov/patch

router/batchrouter/asyncdestinationmanager/eloqua/manager.go#L26

Added line #L26 was not covered by tests
encodedAuthorizationString := "Basic " + base64.StdEncoding.EncodeToString([]byte(authorization))
eloquaData := HttpRequestData{
Authorization: encodedAuthorizationString,
Expand Down

0 comments on commit 851b63b

Please sign in to comment.