Skip to content

Commit

Permalink
Revert "change the order of destination"
Browse files Browse the repository at this point in the history
This reverts commit 521956f.
  • Loading branch information
Amogh-Bharadwaj committed Feb 6, 2024
1 parent 68800a9 commit e38077c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flow/connectors/eventhub/scoped_eventhub.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ func NewScopedEventhub(dstTableName string) (ScopedEventhub, error) {
// It's just so that we have distinct destination table names
// in create mirror's table mapping.
// We can ignore it.
namespacePart := strings.Trim(parts[0], `"`)
eventhubPart := strings.Trim(parts[1], `"`)
eventhubPart := strings.Trim(parts[0], `"`)
namespacePart := strings.Trim(parts[1], `"`)
partitionPart := strings.Trim(parts[3], `"`)
return ScopedEventhub{
EventhubNamespace: namespacePart,
Expand Down

0 comments on commit e38077c

Please sign in to comment.