Skip to content

Commit

Permalink
Fix warning with int conversion
Browse files Browse the repository at this point in the history
Signed-off-by: s8sg <swarvanusg@gmail.com>
  • Loading branch information
s8sg committed Oct 23, 2022
1 parent ff43c6d commit 3c89264
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/flow_runtime.go
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ func (fRuntime *FlowRuntime) StartQueueWorker(errorChan chan error) error {

index := 0
for index < fRuntime.RetryQueueCount {
pushQueues[index], err = connection.OpenQueue(fRuntime.internalRequestQueueId(flowName) + "push-" + string(index))
pushQueues[index], err = connection.OpenQueue(fRuntime.internalRequestQueueId(flowName) + "push-" + fmt.Sprint())

This comment has been minimized.

Copy link
@danli001

danli001 Dec 2, 2022

Contributor

do you mean fmt.Sprint(index) ?

if err != nil {
return fmt.Errorf("failed to open push queue, error %v", err)
}
Expand Down

0 comments on commit 3c89264

Please sign in to comment.