We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following simple Python monitoring sample leaks memory:
import ecal.core.core as ecal_core import sys import time def main(): ecal_core.initialize(sys.argv, "Python Monitoring") ecal_core.mon_initialize() while ecal_core.ok(): try: topics = ecal_core.mon_monitoring()[1]['topics'] for topic in topics: print(topic['tname']) except Exception: pass time.sleep(1) if __name__ == "__main__": main()
The problem is that mon_monitoring (and also mon_logging ) doesn't properly decrease all internal references and thus leaks memory.
mon_monitoring
mon_logging
I don't know
master, v5.12, v5.13.
The text was updated successfully, but these errors were encountered:
PRs:
Sorry, something went wrong.
KerstinKeller
No branches or pull requests
Problem Description
The following simple Python monitoring sample leaks memory:
Problem
The problem is that
mon_monitoring
(and alsomon_logging
) doesn't properly decrease all internal references and thus leaks memory.How did you get eCAL?
I don't know
Environment
master, v5.12, v5.13.
The text was updated successfully, but these errors were encountered: