From a2c9a2c28193381d929af875e35a440ab863bb15 Mon Sep 17 00:00:00 2001 From: Barb Cutler Date: Tue, 22 Jul 2025 13:16:36 -0400 Subject: [PATCH 1/3] remove reference to custom router (missing?) --- examples/16_docker_network_python/config/config.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/16_docker_network_python/config/config.json b/examples/16_docker_network_python/config/config.json index 45f159a..0eaa755 100644 --- a/examples/16_docker_network_python/config/config.json +++ b/examples/16_docker_network_python/config/config.json @@ -233,11 +233,12 @@ // In this example, we want the server to start before the client, so we add a sleep command. "commands" : ["python3 -u client.py"] // By not specifying a outgoing_connections array, we allow ourselves to connect to all nodes on the network - }, + } + /*, { "container_name" : "router", "commands" : ["python3 -u custom_router.py"] - } + }*/ ], "dispatcher_actions" : [ { From 4ec2b3fcb4fdc35299f5a4f4ad3cd10b85b95cbc Mon Sep 17 00:00:00 2001 From: Barb Cutler Date: Mon, 22 Sep 2025 13:26:34 -0400 Subject: [PATCH 2/3] shorten category name --- examples/14_tkinter/config/config.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/14_tkinter/config/config.json b/examples/14_tkinter/config/config.json index fbc5bca..f7ad414 100644 --- a/examples/14_tkinter/config/config.json +++ b/examples/14_tkinter/config/config.json @@ -7,11 +7,11 @@ "RLIMIT_NPROC" : 20 }, "allow_system_calls" : [ - "ALLOW_SYSTEM_CALL_CATEGORY_COMMUNICATIONS_AND_NETWORKING_SIGNALS", - "ALLOW_SYSTEM_CALL_CATEGORY_COMMUNICATIONS_AND_NETWORKING_SOCKETS", - "ALLOW_SYSTEM_CALL_CATEGORY_COMMUNICATIONS_AND_NETWORKING_SOCKETS_MINIMAL", - "ALLOW_SYSTEM_CALL_CATEGORY_FILE_MANAGEMENT_RARE", - "ALLOW_SYSTEM_CALL_CATEGORY_PROCESS_CONTROL_NEW_PROCESS_THREAD" + "COMMUNICATIONS_AND_NETWORKING_SIGNALS", + "COMMUNICATIONS_AND_NETWORKING_SOCKETS", + "COMMUNICATIONS_AND_NETWORKING_SOCKETS_MINIMAL", + "FILE_MANAGEMENT_RARE", + "PROCESS_CONTROL_NEW_PROCESS_THREAD" ], "testcases" : [ { From dc9b1017bae0f9e3fc284312c2f8a4c5aa08f3d3 Mon Sep 17 00:00:00 2001 From: Barb Cutler Date: Mon, 22 Sep 2025 13:28:50 -0400 Subject: [PATCH 3/3] unintended change --- examples/16_docker_network_python/config/config.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/examples/16_docker_network_python/config/config.json b/examples/16_docker_network_python/config/config.json index 0eaa755..45f159a 100644 --- a/examples/16_docker_network_python/config/config.json +++ b/examples/16_docker_network_python/config/config.json @@ -233,12 +233,11 @@ // In this example, we want the server to start before the client, so we add a sleep command. "commands" : ["python3 -u client.py"] // By not specifying a outgoing_connections array, we allow ourselves to connect to all nodes on the network - } - /*, + }, { "container_name" : "router", "commands" : ["python3 -u custom_router.py"] - }*/ + } ], "dispatcher_actions" : [ {