Merge tag '1.3.1' into develop
1.3.1 * added bundle first ordering
This commit is contained in:
commit
7ece9acf8c
@ -125,7 +125,8 @@ def solution_items(variables: list, solver_run: SolverRun) -> Tuple[list]:
|
|||||||
if bundle: form_bundles.append(bundle)
|
if bundle: form_bundles.append(bundle)
|
||||||
|
|
||||||
for bundle in form_bundles:
|
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:
|
for item in items:
|
||||||
final_items.append(item)
|
final_items.append(item)
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ class ServiceListener(Consumer):
|
|||||||
|
|
||||||
|
|
||||||
def main():
|
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.
|
# ToDo: Figure out a much better way of doing this.
|
||||||
# LocalStack wants 'endpoint_url', while prod doesnt :(
|
# LocalStack wants 'endpoint_url', while prod doesnt :(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user