summaryrefslogtreecommitdiff
path: root/nest/config.Y
diff options
context:
space:
mode:
authorMaria Matejka <mq@ucw.cz>2021-09-27 13:04:16 +0200
committerMaria Matejka <mq@ucw.cz>2021-11-22 19:05:43 +0100
commitc70b3198dc349127273d202ab8c36afeebb6d9d0 (patch)
tree27ea26fc1200195849897f47ec2e7ce7bae94d15 /nest/config.Y
parentf18968f52f461946b64aaea6c4a0e88c5235fb07 (diff)
Route export is now asynchronous.
To allow for multithreaded execution, we need to break the import-export chain and buffer the exports before actually processing them.
Diffstat (limited to 'nest/config.Y')
-rw-r--r--nest/config.Y2
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/config.Y b/nest/config.Y
index a56b25be..92f1aad2 100644
--- a/nest/config.Y
+++ b/nest/config.Y
@@ -348,7 +348,7 @@ debug_default:
DEBUG PROTOCOLS debug_mask { new_config->proto_default_debug = $3; }
| DEBUG CHANNELS debug_mask { new_config->channel_default_debug = $3; }
| DEBUG COMMANDS expr { new_config->cli_debug = $3; }
- | DEBUG PIPE bool { new_config->pipe_debug = $3; }
+ | DEBUG TABLES bool { new_config->table_debug = $3; }
;
/* MRTDUMP PROTOCOLS is in systep/unix/config.Y */