Skip to content
Snippets Groups Projects
Commit c298ed02 authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

htools: Add missing parameter to OpInstanceMultiAlloc


Somehow this went missing in commit 1f1188c3.

Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarMichele Tartara <mtartara@google.com>
parent bc826292
No related branches found
No related tags found
No related merge requests found
......@@ -219,7 +219,8 @@ instance Arbitrary OpCodes.OpCode where
genMaybe genNodeNameNE <*> genMaybe genNameNE <*>
arbitrary <*> arbitrary <*> (genTags >>= mapM mkNonEmpty)
"OP_INSTANCE_MULTI_ALLOC" ->
OpCodes.OpInstanceMultiAlloc <$> genMaybe genNameNE <*> pure []
OpCodes.OpInstanceMultiAlloc <$> genMaybe genNameNE <*> pure [] <*>
arbitrary
"OP_INSTANCE_REINSTALL" ->
OpCodes.OpInstanceReinstall <$> genFQDN <*> arbitrary <*>
genMaybe genNameNE <*> genMaybe (pure emptyJSObject)
......
......@@ -300,6 +300,7 @@ $(genOpCode "OpCode"
, ("OpInstanceMultiAlloc",
[ pIallocator
, pMultiAllocInstances
, pOpportunisticLocking
])
, ("OpInstanceReinstall",
[ pInstanceName
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment