Skip to content
Snippets Groups Projects
Commit d1adf082 authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

Merge branch 'tweaking_core_sampler_pipeline' into '2.8.2-DEVELOPMENT'

make parameter names match

See merge request !1352
parents 95e780f7 04ea8921
No related branches found
No related tags found
2 merge requests!1452Merge 2.8.2 to main,!1352make parameter names match
Pipeline #9888 passed
......@@ -36,11 +36,13 @@ from .interfaces import RowSet, Table, RowWriter
from .row_writer import (
PostgresCopyRowWriter,
TopologicallySortingRowWriter,
UniquifyingRowWriter, DictionaryKeeper,
UniquifyingRowWriter,
DictionaryKeeper,
)
# pylint: disable=C0103, E0402, R0201, R0903
# stolen shamelessly from aat_wrest
class MDDBConnector:
"""Use this connection to interrogate this science product locator"""
......@@ -129,7 +131,7 @@ class CoreSampler:
# the first time through, we select from the projects table and get that row
projects = self.table("science_products")
requested = projects.fetch({"science_product_locator": science_product_locator})
requested = projects.fetch({"science_product_locator": product_locator})
self.save(requested)
self.writer.close()
return self.writer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment