mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Batching support on the client side has proven to be a much more effective way of dealing with server latency than multiple client connections and is also much nicer on the server, so drop the client pool support from asyncrpc and the hash server (Bitbake rev: 6f80560f1c7010d09fe5448fdde616aef8468102) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
322 B
Python
17 lines
322 B
Python
#
|
|
# Copyright BitBake Contributors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
|
|
|
|
from .client import AsyncClient, Client
|
|
from .serv import AsyncServer, AsyncServerConnection
|
|
from .connection import DEFAULT_MAX_CHUNK
|
|
from .exceptions import (
|
|
ClientError,
|
|
ServerError,
|
|
ConnectionClosedError,
|
|
InvokeError,
|
|
)
|