Merge tag '1.3.1' into develop

1.3.1
* added bundle first ordering
This commit is contained in:
Joshua Burman 2022-05-11 15:14:36 -04:00
commit 7ece9acf8c
2 changed files with 3 additions and 2 deletions

View File

@ -125,7 +125,8 @@ def solution_items(variables: list, solver_run: SolverRun) -> Tuple[list]:
if bundle: form_bundles.append(bundle)
for bundle in form_bundles:
items = bundle.ordered_items if solver_run.bundle_first_ordering else bundle.items
items = bundle.ordered_items(
) if solver_run.bundle_first_ordering else bundle.items
for item in items:
final_items.append(item)

View File

@ -25,7 +25,7 @@ class ServiceListener(Consumer):
def main():
logging.info('Starting Solver Service: Tokyo Drift (v1.2)...')
logging.info('Starting Solver Service: Tokyo Drift (v1.3.1)...')
# ToDo: Figure out a much better way of doing this.
# LocalStack wants 'endpoint_url', while prod doesnt :(