Comment 2 for bug 1673085

Revision history for this message
Matt Riedemann (mriedem) wrote :

If I know that scheduler hints are stored in the request_specs.specs table and the size on that column is 65,535, then I could reasonably do something like:

hints = {}
for x in xrange(64000):
    hints[str(x)] = str(x)

And then use those hints for the os:scheduler_hints field in the server create request body.