1
0
mirror of https://github.com/facebook/proxygen.git synced 2025-08-10 05:22:59 +03:00

add better error for passing config with no steps

Summary: in response to https://github.com/facebook/openr/issues/23

Reviewed By: snarkmaster

Differential Revision: D7342371

fbshipit-source-id: 15737f79900722ce016494f994932aa26e5acad5
This commit is contained in:
John Strizich
2018-03-22 17:25:01 -07:00
committed by Facebook Github Bot
parent c28982c224
commit 0ae75f9b10

View File

@@ -138,6 +138,9 @@ class FBCodeBuilder(object):
return res
def build(self, steps):
if not steps:
raise RuntimeError('Please ensure that the config you are passing '
'contains steps')
return [self.setup(), self.diagnostics()] + steps
def setup(self):