]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1706] minor ordering of command list
authorRazvan Becheriu <razvan@isc.org>
Thu, 16 Jun 2022 16:37:42 +0000 (19:37 +0300)
committerTomek Mrugalski <tomek@isc.org>
Thu, 23 Jun 2022 15:31:14 +0000 (17:31 +0200)
src/hooks/dhcp/high_availability/command_creator.cc

index 19af10b466e642276f618ff2f093a503735873d5..4fa0b02b588f7bd6ab298a9b38e3dbe037be1616 100644 (file)
@@ -20,16 +20,20 @@ namespace ha {
 
 unordered_set<string> CommandCreator::ha_commands4_ = {
     "list-commands", "status-get",
-    "dhcp-disable", "dhcp-enable", "ha-reset", "ha-heartbeat",
-    "lease4-update", "lease4-del", "lease4-get-all", "lease4-get-page",
+    "dhcp-disable", "dhcp-enable",
+    "ha-reset", "ha-heartbeat",
+    "lease4-update", "lease4-del",
+    "lease4-get-all", "lease4-get-page",
     "ha-maintenance-notify", "ha-sync-complete-notify"
 };
 
 unordered_set<string> CommandCreator::ha_commands6_ = {
     "list-commands", "status-get",
-    "dhcp-disable", "dhcp-enable", "ha-reset", "ha-heartbeat",
-    "lease6-bulk-apply", "lease6-update", "lease6-del", "lease6-get-all",
-    "lease6-get-page",
+    "dhcp-disable", "dhcp-enable",
+    "ha-reset", "ha-heartbeat",
+    "lease6-bulk-apply",
+    "lease6-update", "lease6-del",
+    "lease6-get-all", "lease6-get-page",
     "ha-maintenance-notify", "ha-sync-complete-notify"
 };