- boot manager passes ints instead of bools
authorMark Huang <mlhuang@cs.princeton.edu>
Mon, 6 Nov 2006 21:29:00 +0000 (21:29 +0000)
committerMark Huang <mlhuang@cs.princeton.edu>
Mon, 6 Nov 2006 21:29:00 +0000 (21:29 +0000)
PLC/Methods/BootNotifyOwners.py

index 777a590..79c86b6 100644 (file)
@@ -19,9 +19,9 @@ class BootNotifyOwners(Method):
     accepts = [
         BootAuth(),
         Message.fields['message_id'],
-        Parameter(bool, "Notify PIs"),
-        Parameter(bool, "Notify technical contacts"),
-        Parameter(bool, "Notify support")
+        Parameter(int, "Notify PIs"),
+        Parameter(int, "Notify technical contacts"),
+        Parameter(int, "Notify support")
         ]
 
     returns = Parameter(int, '1 if successful')