ON THIS PAGE

  • Breaking change in 24.080.2202

Breaking change in 24.080.2202

Agent version 24.080.2202 introduces a breaking change in the way applications are started.You are required to add the following code to your application as otherwise it would just exit without starting the application:
Python
1if __name__ == "__main__":
2    app = Application()
3    app.run()