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 AST listener uses config.yaml to listen for calls & send telemetry when the right calls are found, eg.
config.yaml
intake: catalog: - esm_datastore.search - DfFileCatalog.search - DfFileCatalog.__getitem__ payu: run: - Experiment.run restart: - Experiment.restart
esm_datastore.search will listen for that function call, and post telemetry to .../intake/catalog
esm_datastore.search
.../intake/catalog
I need to double check that this doesn't depend on how things are imported - eg. will the following be caught correctly:
intake: catalog: - esm_datastore.search - DfFileCatalog.search - DfFileCatalog.__getitem__ + builder: + - AccessOm2Builder.build payu: run: - Experiment.run restart: - Experiment.restart
Questions to confirm:
AccessOm2Builder.build
from access_nri_intake import builders ... builders.AccessOm2Builder.build()
Will this still be caught as if we had performed the following?
from access_nri_intake.builders import AccessOm2Builder ... AccessOm2Builder.build()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The AST listener uses
config.yaml
to listen for calls & send telemetry when the right calls are found, eg.esm_datastore.search
will listen for that function call, and post telemetry to.../intake/catalog
I need to double check that this doesn't depend on how things are imported - eg. will the following be caught correctly:
Questions to confirm:
AccessOm2Builder.build
is a method defined on a parent class, is this still going to work?Will this still be caught as if we had performed the following?
The text was updated successfully, but these errors were encountered: