We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99c78ef commit 8785ca1Copy full SHA for 8785ca1
core/generator/java/java.stoneg.py
@@ -2586,7 +2586,9 @@ def generate_client(self):
2586
2587
def generate_namespace(self, namespace):
2588
assert isinstance(namespace, ApiNamespace), repr(namespace)
2589
-
+ # We need a stable sort in order to keep the resultant output
2590
+ # the same across runs.
2591
+ namespace.routes.sort()
2592
j = self.j
2593
2594
# add documentation to our packages
0 commit comments