Skip to content

Commit

Permalink
fix GetSourceConnectorsByStationAndPartition
Browse files Browse the repository at this point in the history
  • Loading branch information
shohamroditimemphis committed Dec 13, 2023
1 parent bfe7389 commit 7939518
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/memphis_cloud.go
Original file line number Diff line number Diff line change
Expand Up @@ -2601,8 +2601,8 @@ func deleteConnectorsTenantResources(tenantName string) error {
return nil
}

func (s *Server) GetSourceConnectorsByStationAndPartition(stationID, partitionNumber, numOfPartitions int) (map[string]interface{}, error) {
return map[string]interface{}{}, nil
func (s *Server) GetSourceConnectorsByStationAndPartition(stationID, partitionNumber, numOfPartitions int) ([]string, error) {
return []string{}, nil
}

func (ch ConsumersHandler) GetSinkConnectorsByStation(stationName StationName, station models.Station, partition int, partitions []int) ([]string, error) {
Expand Down

0 comments on commit 7939518

Please sign in to comment.