Skip to content

Commit

Permalink
fix uri config for more (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
jingshi-ant authored May 10, 2024
1 parent cf5181a commit 3a8c663
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docker/version.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version = "0.6.0b1"
version = "0.6.0b2"
7 changes: 1 addition & 6 deletions pkg/broker/services/intra/query_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,12 +229,7 @@ func distributeQueryToOtherParty(session *application.Session, enginesInfo *tran
selfCode := session.GetSelfPartyCode()
var selfEndpoint string
if !session.DryRun {
endpoint, err := session.GetEndpoint(selfCode)
if err != nil {
ret.err = err
return
}
selfEndpoint = endpoint
selfEndpoint = session.Engine.GetEndpointForPeer()
}

// distribute queries to other participants
Expand Down

0 comments on commit 3a8c663

Please sign in to comment.