File tree Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -310,19 +310,18 @@ def put_broadcast(
310
310
if namespace not in self .linearized_ancestors :
311
311
bad_namespaces .append (namespace )
312
312
elif not bad_point :
313
- # Check broadcast against config:
314
- self .check_for_old_and_new_platform_settings (
315
- self .schd .config .get_config (
316
- ['runtime' , namespace ]
317
- ).copy (),
318
- namespace ,
319
- coerced_setting ,
320
- )
321
- # Check broadcast against existing broadcasts:
322
- self .check_for_old_and_new_platform_settings (
313
+ # Check broadcast against config and against
314
+ # existing broadcasts:
315
+ newconfig = pdeepcopy (self .schd .config .get_config (
316
+ ['runtime' , namespace ]
317
+ ))
318
+ poverride (
319
+ newconfig ,
323
320
self .broadcasts .get (point_string , {})
324
321
.get (namespace , {})
325
- .copy (),
322
+ )
323
+ self .check_for_old_and_new_platform_settings (
324
+ newconfig ,
326
325
namespace ,
327
326
coerced_setting ,
328
327
)
You can’t perform that action at this time.
0 commit comments