split out node, scaleset, and pool code (#507)

This commit is contained in:
bmc-msft
2021-02-04 19:07:49 -05:00
committed by GitHub
parent 81263c9065
commit a02e084522
24 changed files with 1302 additions and 1229 deletions

View File

@ -13,10 +13,10 @@ from onefuzztypes.responses import BoolResult, ProxyGetResult
from ..onefuzzlib.endpoint_authorization import call_if_user
from ..onefuzzlib.events import get_events
from ..onefuzzlib.pools import Scaleset
from ..onefuzzlib.proxy import Proxy
from ..onefuzzlib.proxy_forward import ProxyForward
from ..onefuzzlib.request import not_ok, ok, parse_request
from ..onefuzzlib.workers.scalesets import Scaleset
def get_result(proxy_forward: ProxyForward, proxy: Optional[Proxy]) -> ProxyGetResult: