We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eee935 commit 3aa7598Copy full SHA for 3aa7598
components/marqo/tests/compatibility_tests/docker_manager.py
@@ -206,9 +206,13 @@ def _start_marqo_container_post_2250(
206
compose_content['services']['mioc']['image'] = inference_orchestrator_image
207
compose_content['services']['mmc']['image'] = model_management_image
208
209
+ for services in ['api', 'mioc', 'mmc']:
210
+ if "build" in compose_content['services'][services]:
211
+ del compose_content['services'][services]['build']
212
+
213
yaml.dump(compose_content, fp)
214
fp.flush()
- print(compose_content)
215
+ self.logger.info(f"Marqo backwards compatibility test using compose file: {compose_file}")
216
self.compose_file= Path(fp.name).absolute()
217
218
subprocess.run(
0 commit comments