Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ftr: Context support #330

Merged
merged 5 commits into from
Jan 21, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix review: split imports
  • Loading branch information
flycash committed Jan 21, 2020
commit ab699680a6ec2e59aa3ecff76d17e71d029ff432
3 changes: 2 additions & 1 deletion cluster/cluster_impl/failfast_cluster_invoker.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ package cluster_impl

import (
"context"

)
import (
"github.com/apache/dubbo-go/cluster"
"github.com/apache/dubbo-go/protocol"
)
Expand Down
3 changes: 2 additions & 1 deletion cluster/cluster_impl/failsafe_cluster_invoker.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ package cluster_impl

import (
"context"

)
import (
"github.com/apache/dubbo-go/cluster"
"github.com/apache/dubbo-go/common/constant"
"github.com/apache/dubbo-go/common/extension"
Expand Down
3 changes: 2 additions & 1 deletion cluster/cluster_impl/registry_aware_cluster_invoker.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ package cluster_impl

import (
"context"

)
import (
"github.com/apache/dubbo-go/cluster"
"github.com/apache/dubbo-go/common/constant"
"github.com/apache/dubbo-go/protocol"
Expand Down
3 changes: 2 additions & 1 deletion filter/filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ package filter

import (
"context"

)
import (
"github.com/apache/dubbo-go/protocol"
)

Expand Down
3 changes: 2 additions & 1 deletion filter/filter_impl/echo_filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ package filter_impl

import (
"context"

)
import (
"github.com/apache/dubbo-go/common/constant"
"github.com/apache/dubbo-go/common/extension"
"github.com/apache/dubbo-go/common/logger"
Expand Down
3 changes: 2 additions & 1 deletion filter/filter_impl/tps_limit_filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ package filter_impl

import (
"context"

)
import (
"github.com/apache/dubbo-go/common/constant"
"github.com/apache/dubbo-go/common/extension"
"github.com/apache/dubbo-go/common/logger"
Expand Down
3 changes: 2 additions & 1 deletion protocol/invoker.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ package protocol

import (
"context"

)
import (
"github.com/apache/dubbo-go/common"
"github.com/apache/dubbo-go/common/logger"
)
Expand Down