This is an automated email from the ASF dual-hosted git repository.
eamonford pushed a change to branch rabbitmq-fix
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-ingester.git.
discard b2f3e38 conflict resolve
discard eb95f5e use asyncio in the collection ingester
discard 6770300 solr history bug fixes
discard 4b81e13 use pysolr
discard 02df569 error handling
discard 3afb12c exc handling
discard 11789f4 propagate child worker exceptions up to main process
discard 1be91cd the healthchecks now raise exceptions if they rail
discard 6b2e6a0 error handling
discard 5a4ef11 better exception handling
discard a1f0fe2 better error handling
omit c599caf SDAP-271 Cassandra authentication support (#11)
omit e309727 add a on.update kopf event for crd updates
omit 426a293 Fix syntax error (#9)
omit 6f48d8a SDAP-270: Fix bad solr endpoints in solr history manager (#8)
omit 6759457 SDAP-269: Switch to using aio-pika in collection-manager to
maintain an asynchronous connection to RabbitMQ (#7)
new 6efb623 better error handling
new 7feb58d better exception handling
new 0c97d99 error handling
new 562ef6f the healthchecks now raise exceptions if they rail
new de8c5a0 propagate child worker exceptions up to main process
new 41755a5 exc handling
new 385f5b8 error handling
new fd5cc22 use pysolr
new cdd30ae solr history bug fixes
new 2525001 use asyncio in the collection ingester
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (b2f3e38)
\
N -- N -- N refs/heads/rabbitmq-fix (2525001)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 10 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 4 +-
collection_manager/README.md | 7 +--
.../services/CollectionWatcher.py | 33 +++++------
.../history_manager/SolrIngestionHistory.py | 35 ++++++------
collection_manager/requirements.txt | 1 +
.../tests/services/test_CollectionProcessor.py | 37 +++++-------
.../tests/services/test_CollectionWatcher.py | 66 ++++++++++++++--------
common/common/__init__.py | 0
common/common/async_test_utils/AsyncTestUtils.py | 28 ---------
common/common/async_test_utils/__init__.py | 1 -
common/setup.py | 21 -------
config_operator/README.md | 10 +---
.../config_source/RemoteGitConfig.py | 4 +-
config_operator/config_operator/main.py | 38 +++----------
.../containers/k8s/config-operator-crd.yml | 2 +-
.../containers/k8s/deployment-git-src.yml | 23 ++++++++
config_operator/containers/k8s/git-repo-test.yml | 4 +-
granule_ingester/.gitignore | 9 +++
granule_ingester/docker/entrypoint.sh | 2 +-
.../granule_ingester/exceptions/Exceptions.py | 8 ---
granule_ingester/granule_ingester/main.py | 28 +++++----
granule_ingester/tests/writers/test_SolrStore.py | 5 +-
22 files changed, 160 insertions(+), 206 deletions(-)
delete mode 100644 common/common/__init__.py
delete mode 100644 common/common/async_test_utils/AsyncTestUtils.py
delete mode 100644 common/common/async_test_utils/__init__.py
delete mode 100644 common/setup.py
create mode 100644 config_operator/containers/k8s/deployment-git-src.yml
create mode 100644 granule_ingester/.gitignore