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 1882cf0 commit 98bc86cCopy full SHA for 98bc86c
perfkitbenchmarker/app_service.py
@@ -307,6 +307,12 @@ def GetLifeCycleMetrics(self):
307
s.metadata.update(self.metadata)
308
return self.samples
309
310
+ def IsAppLongRunning(self) -> bool:
311
+ """Returns true if the app is long running."""
312
+ if not self.builder:
313
+ return False
314
+ return self.builder.IsAppLongRunning()
315
+
316
def _PostCreate(self):
317
"""Method called after _CreateResource."""
318
if self.builder:
0 commit comments