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 759b0c2 commit 84330cfCopy full SHA for 84330cf
src/sagemaker/local/image.py
@@ -473,7 +473,12 @@ def write_processing_config_files(
473
"""
474
config_path = os.path.join(self.container_root, host, "config")
475
476
- resource_config = {"current_host": host, "hosts": self.hosts}
+ resource_config = {
477
+ "current_host": host,
478
+ "hosts": self.hosts,
479
+ "network_interface_name": "eth0",
480
+ "current_instance_type": self.instance_type,
481
+ }
482
_write_json_file(os.path.join(config_path, "resourceconfig.json"), resource_config)
483
484
processing_job_config = {
0 commit comments