-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
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
listruns() should get db from session if possible #468
Comments
Use |
A challenge is to identify the best database to who with |
It is observed that when In [222]: mdb.name
In [223]: mdb2 = databroker.Broker.named("mongodb_config")
In [224]: mdb2.name
Out[224]: 'mongodb_config'
In [225]: mdb = databroker.catalog["mongodb_config"]
In [226]: mdb.name |
Tough to report the database name since the output of |
When using an intake-style catalog, the
listruns()
defaults through to an existingmongodb_config
instead. Make this smarter (but not at the expense of more fragile).The text was updated successfully, but these errors were encountered: