From d77cdb32b4067afe34fa427937dbf2f0c20b0c16 Mon Sep 17 00:00:00 2001 From: docktermj Date: Fri, 29 Dec 2023 09:29:02 -0500 Subject: [PATCH] #157 Migrate repository --- .github/CODEOWNERS | 2 +- .github/ISSUE_TEMPLATE/bug_report.md | 38 -------- .github/ISSUE_TEMPLATE/feature_request.md | 17 ---- .../README_TEMPLATE/demonstration/README.md | 15 ---- ...-dependabot-request-to-project-t-comm.yaml | 27 ------ ...aml => add-label-customer-submission.yaml} | 12 +-- ...riage-label.yaml => add-label-triage.yaml} | 12 +-- .../add-to-project-garage-dependabot.yaml | 21 +++++ ...t-comm.yaml => add-to-project-garage.yaml} | 7 +- .gitignore | 2 +- CODE_OF_CONDUCT.md | 2 +- CONTRIBUTING.md | 2 +- PULL_REQUEST_TEMPLATE.md | 13 --- README.md | 14 +++ docs/README.md | 2 +- docs/index.html | 2 +- docs/index.yaml | 90 +++++++++---------- stream-loader.py | 6 +- 18 files changed, 99 insertions(+), 185 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md delete mode 100644 .github/README_TEMPLATE/demonstration/README.md delete mode 100644 .github/workflows/add-dependabot-request-to-project-t-comm.yaml rename .github/workflows/{identify-customer.yaml => add-label-customer-submission.yaml} (68%) rename .github/workflows/{add-triage-label.yaml => add-label-triage.yaml} (51%) create mode 100644 .github/workflows/add-to-project-garage-dependabot.yaml rename .github/workflows/{add-to-project-t-comm.yaml => add-to-project-garage.yaml} (72%) delete mode 100644 PULL_REQUEST_TEMPLATE.md diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 3df4113..04b7aa2 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,3 +1,3 @@ # Default code owner -* @Senzing/senzing-community +* @senzing-garage/senzing-mechanics diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index d3a80d7..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: - -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Desktop (please complete the following information):** - -- OS: [e.g. iOS] -- Browser [e.g. chrome, safari] -- Version [e.g. 22] - -**Smartphone (please complete the following information):** - -- Device: [e.g. iPhone6] -- OS: [e.g. iOS8.1] -- Browser [e.g. stock browser, safari] -- Version [e.g. 22] - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 066b2d9..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/README_TEMPLATE/demonstration/README.md b/.github/README_TEMPLATE/demonstration/README.md deleted file mode 100644 index 8daa9f8..0000000 --- a/.github/README_TEMPLATE/demonstration/README.md +++ /dev/null @@ -1,15 +0,0 @@ -# name-of-repository - -## Overview - -This demonstration shows... - -## Install - -These instructions will install and run... - -## Test - -## References - -1. [Senzing](http://senzing.com) diff --git a/.github/workflows/add-dependabot-request-to-project-t-comm.yaml b/.github/workflows/add-dependabot-request-to-project-t-comm.yaml deleted file mode 100644 index 5d9cbcb..0000000 --- a/.github/workflows/add-dependabot-request-to-project-t-comm.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Based on -# - https://github.com/srggrs/assign-one-project-github-action - -name: add-dependabot-request-to-project-t-comm.yaml - -on: - pull_request: - types: - - opened - - reopened - -env: - GITHUB_TOKEN: ${{ secrets.SENZING_GITHUB_ACCESS_TOKEN }} - CREATOR: ${{ github.event.pull_request.user.login }} - -jobs: - add-dependabot-request-to-project: - name: Add dependabot pull request to Senzing Community project - runs-on: ubuntu-latest - steps: - - name: Assign pull request to project - env: - BOOL: ${{ contains( env.CREATOR, 'dependabot' ) }} - uses: Senzing/github-action-add-issue-to-project@main - if: ${{ env.BOOL == 'true' }} - with: - project: "https://github.com/orgs/Senzing/projects/2" diff --git a/.github/workflows/identify-customer.yaml b/.github/workflows/add-label-customer-submission.yaml similarity index 68% rename from .github/workflows/identify-customer.yaml rename to .github/workflows/add-label-customer-submission.yaml index 2e9a0da..f9dd8e8 100644 --- a/.github/workflows/identify-customer.yaml +++ b/.github/workflows/add-label-customer-submission.yaml @@ -1,21 +1,17 @@ -name: identify-customer.yaml - +name: add-label-customer-submission.yaml on: issues: types: - opened - env: - GITHUB_TOKEN: ${{ secrets.ORG_MEMBERSHIP_TOKEN }} MEMBER_LIST: ${{ secrets.SENZING_MEMBERS }} CREATOR: ${{ github.actor }} - jobs: - identify-customer: - name: Add customer-submission label + automate-issues-labels: + name: Add customer-submission label to issue runs-on: ubuntu-latest steps: - - name: initial labeling + - name: Add customer-submission label env: BOOL: ${{ contains( env.MEMBER_LIST, env.CREATOR ) }} if: ${{ env.BOOL == 'false' }} diff --git a/.github/workflows/add-triage-label.yaml b/.github/workflows/add-label-triage.yaml similarity index 51% rename from .github/workflows/add-triage-label.yaml rename to .github/workflows/add-label-triage.yaml index bdbefae..fc32b8c 100644 --- a/.github/workflows/add-triage-label.yaml +++ b/.github/workflows/add-label-triage.yaml @@ -1,21 +1,15 @@ -# Based on -# - https://docs.github.com/en/actions/guides/adding-labels-to-issues -# - https://github.com/andymckay/labeler - -name: add-triage-label.yaml - +name: add-label-triage.yaml on: issues: types: - reopened - opened - jobs: - add-triage-label: + automate-issues-labels: name: Add triage label to issue runs-on: ubuntu-latest steps: - - name: initial labeling + - name: Add triage label uses: andymckay/labeler@1.0.4 with: add-labels: "triage" diff --git a/.github/workflows/add-to-project-garage-dependabot.yaml b/.github/workflows/add-to-project-garage-dependabot.yaml new file mode 100644 index 0000000..91cb367 --- /dev/null +++ b/.github/workflows/add-to-project-garage-dependabot.yaml @@ -0,0 +1,21 @@ +name: add-to-project-garage-dependabot.yaml +on: + pull_request: + types: + - opened + - reopened +env: + CREATOR: ${{ github.event.pull_request.user.login }} +jobs: + add-to-project: + name: Add dependabot pull request to project + runs-on: ubuntu-latest + steps: + - name: Assign pull request to project + env: + BOOL: ${{ contains( env.CREATOR, 'dependabot' ) }} + if: ${{ env.BOOL == 'true' }} + uses: actions/add-to-project@v0.5.0 + with: + project-url: https://github.com/orgs/senzing-garage/projects/3 + github-token: ${{ secrets.SENZING_GITHUB_ACCESS_TOKEN }} diff --git a/.github/workflows/add-to-project-t-comm.yaml b/.github/workflows/add-to-project-garage.yaml similarity index 72% rename from .github/workflows/add-to-project-t-comm.yaml rename to .github/workflows/add-to-project-garage.yaml index ce8d858..4599e4e 100644 --- a/.github/workflows/add-to-project-t-comm.yaml +++ b/.github/workflows/add-to-project-garage.yaml @@ -1,17 +1,16 @@ -name: add-issue-to-project-t-comm.yaml - +name: add-to-project-garage.yaml on: issues: types: - reopened - opened - jobs: add-to-project: name: Add issue to project runs-on: ubuntu-latest steps: - - uses: actions/add-to-project@v0.5.0 + - name: Assign issue to project + uses: actions/add-to-project@v0.5.0 with: project-url: https://github.com/orgs/senzing-garage/projects/3 github-token: ${{ secrets.SENZING_GITHUB_ACCESS_TOKEN }} diff --git a/.gitignore b/.gitignore index 6be137d..1e555eb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ .DS_Store -.history/ \ No newline at end of file +.history diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index f6f9f91..a8f1a17 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -34,7 +34,7 @@ This Code of Conduct applies both within project spaces and in public spaces whe ## Enforcement -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at support@senzing.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at . The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8b1a38e..29de644 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -82,7 +82,7 @@ These variables may be modified, but do not need to be modified. The variables are used throughout the installation procedure. ```console -export GIT_ACCOUNT=senzing +export GIT_ACCOUNT=senzing-garage export GIT_REPOSITORY=test-ground ``` diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 0b11a2f..0000000 --- a/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,13 +0,0 @@ -# Pull request questions - -## Which issue does this address - -Issue number: #nnn - -## Why was change needed - -??? - -## What does change improve - -??? diff --git a/README.md b/README.md index 2d7166c..e67e4c7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,19 @@ # test-ground +If you are beginning your journey with +[Senzing](https://senzing.com/), +please start with +[Senzing Quick Start guides](https://docs.senzing.com/quickstart/). + +You are in the +[Senzing Garage](https://github.com/senzing-garage) +where projects are "tinkered" on. +Although this GitHub repository may help you understand an approach to using Senzing, +it's not considered to be "production ready" and is not considered to be part of the Senzing product. +Heck, it may not even be appropriate for your application of Senzing! + +## Synopsis + An area for testing ideas. May be wiped out at any time. Michael and Ant are testing. diff --git a/docs/README.md b/docs/README.md index 90bf5a0..5576212 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,7 +1,7 @@ # Senzing Helm Charts The repository of Senzing Helm Charts is located at -[github.com/Senzing/charts](https://github.com/Senzing/charts). +[github.com/Senzing/charts](https://github.com/senzing-garage/charts). ## Add helm repository diff --git a/docs/index.html b/docs/index.html index 7ffff19..66db92e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -200,7 +200,7 @@

$("" + certifiedCurrent + "").appendTo(".senzing-artifact-version") $("" + description + "").appendTo(".senzing-description") - $('.senzing-add-href-for-github-repository').attr('href', "https://github.com/Senzing/stream-loader/tree/" + certifiedCurrent); + $('.senzing-add-href-for-github-repository').attr('href', "https://github.com/senzing-garage/stream-loader/tree/" + certifiedCurrent); $('.senzing-add-href-for-artifact').attr('href', "https://raw.githubusercontent.com/Senzing/stream-loader/" + certifiedCurrent + "/stream-loader.py"); }); diff --git a/docs/index.yaml b/docs/index.yaml index 4c9b832..31d9eea 100644 --- a/docs/index.yaml +++ b/docs/index.yaml @@ -9,7 +9,7 @@ entries: version: 1.0.1 description: MySQL client digest: 3954bc33f2b0094ec688d19e8541d3fb79cd1805b19ae9305fd4981b8ae6ec24 - home: https://github.com/Senzing/charts/tree/master/charts/arey-mysql-client + home: https://github.com/senzing-garage/charts/tree/master/charts/arey-mysql-client icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - mysql @@ -18,7 +18,7 @@ entries: name: Senzing name: arey-mysql-client sources: - - https://github.com/Senzing/charts/tree/master/charts/arey-mysql-client + - https://github.com/senzing-garage/charts/tree/master/charts/arey-mysql-client - https://github.com/arey/mysql-client type: application urls: @@ -33,7 +33,7 @@ entries: version: 1.0.1 description: Kafka test client digest: 9f893e889942b46ccc049c8daabc91636a1238fd88be56a5b9d3b2b9e2ea4b3d - home: https://github.com/Senzing/charts/tree/master/charts/confluentinc-cp-kafka + home: https://github.com/senzing-garage/charts/tree/master/charts/confluentinc-cp-kafka icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - kafka @@ -56,7 +56,7 @@ entries: version: 1.0.1 description: MS-SQL tools digest: cf9bd92a8ee5eb95094ff6356b5e31db89e155d5259ae692cdf743bb605ac74b - home: https://github.com/Senzing/charts/tree/master/charts/microsoft-mssql-tools + home: https://github.com/senzing-garage/charts/tree/master/charts/microsoft-mssql-tools icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - mssql @@ -65,7 +65,7 @@ entries: name: Senzing name: microsoft-mssql-tools sources: - - https://github.com/Senzing/charts/tree/master/charts/microsoft-mssql-tools + - https://github.com/senzing-garage/charts/tree/master/charts/microsoft-mssql-tools type: application urls: - microsoft-mssql-tools-2.0.0.tgz @@ -92,7 +92,7 @@ entries: name: Senzing name: phppgadmin sources: - - https://github.com/Senzing/charts/tree/master/charts/phppgadmin + - https://github.com/senzing-garage/charts/tree/master/charts/phppgadmin type: application urls: - phppgadmin-3.0.0.tgz @@ -106,7 +106,7 @@ entries: version: 1.0.1 description: Senzing API server digest: 7b4084de57d9d512bbf143b822176071455813adfa6f0159282d2c2ad9ae916f - home: https://github.com/Senzing/charts/tree/master/charts/senzing-api-server + home: https://github.com/senzing-garage/charts/tree/master/charts/senzing-api-server icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - senzing @@ -119,8 +119,8 @@ entries: name: Senzing name: senzing-api-server sources: - - https://github.com/Senzing/charts/tree/master/charts/senzing-api-server - - https://github.com/Senzing/senzing-api-server + - https://github.com/senzing-garage/charts/tree/master/charts/senzing-api-server + - https://github.com/senzing-garage/senzing-api-server type: application urls: - senzing-api-server-2.0.0.tgz @@ -134,7 +134,7 @@ entries: version: 1.0.1 description: A wrapper over apt package installer prepared for Senzing installs digest: e60ac97fbcd7ebcfd6389181b727e57f1c23e4c462a260f6877a8b64b540df3e - home: https://github.com/Senzing/charts/tree/master/charts/senzing-apt + home: https://github.com/senzing-garage/charts/tree/master/charts/senzing-apt icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - senzing @@ -144,8 +144,8 @@ entries: name: Senzing name: senzing-apt sources: - - https://github.com/Senzing/charts/tree/master/charts/senzing-apt - - https://github.com/Senzing/docker-apt + - https://github.com/senzing-garage/charts/tree/master/charts/senzing-apt + - https://github.com/senzing-garage/docker-apt type: application urls: - senzing-apt-2.0.0.tgz @@ -159,7 +159,7 @@ entries: version: 1.0.1 description: A Senzing environment digest: 88580392c782d45c785b7d140b8955caa9ad4981a2e2a6691dcdee85693348ae - home: https://github.com/Senzing/charts/tree/master/charts/senzing-base + home: https://github.com/senzing-garage/charts/tree/master/charts/senzing-base icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - senzing @@ -168,8 +168,8 @@ entries: name: Senzing name: senzing-base sources: - - https://github.com/Senzing/charts/tree/master/charts/senzing-base - - https://github.com/Senzing/docker-senzing-base + - https://github.com/senzing-garage/charts/tree/master/charts/senzing-base + - https://github.com/senzing-garage/docker-senzing-base type: application urls: - senzing-base-2.0.0.tgz @@ -182,7 +182,7 @@ entries: created: "2021-11-17T16:04:52.221867417-05:00" description: Common templates shared by Senzing charts. digest: c812faa8bd608098344ab101af73614792f777828cbc3df9a4ddebaf9c635871 - home: https://github.com/Senzing/charts/tree/master/charts/senzing-common + home: https://github.com/senzing-garage/charts/tree/master/charts/senzing-common icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - common @@ -191,7 +191,7 @@ entries: - senzing name: senzing-common sources: - - https://github.com/senzing/charts + - https://github.com/senzing-garage/charts type: library urls: - senzing-common-1.0.1.tgz @@ -205,7 +205,7 @@ entries: version: 1.0.1 description: A Senzing configuration micro service. digest: ab968779a2266e1b513d23736f198f2ad0189a5c7b9307a62a5f23bbb0b8b037 - home: https://github.com/Senzing/charts/tree/master/charts/senzing-configurator + home: https://github.com/senzing-garage/charts/tree/master/charts/senzing-configurator icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - senzing @@ -215,8 +215,8 @@ entries: name: Senzing name: senzing-configurator sources: - - https://github.com/Senzing/charts/tree/master/charts/senzing-configurator - - https://github.com/Senzing/configurator + - https://github.com/senzing-garage/charts/tree/master/charts/senzing-configurator + - https://github.com/senzing-garage/configurator type: application urls: - senzing-configurator-2.0.0.tgz @@ -230,7 +230,7 @@ entries: version: 1.0.1 description: A Senzing environment for console access digest: 777b937195faad9dd22b1b18edd1a0fc200f5f9068157b18a9a7c7ebcc1d7b75 - home: https://github.com/Senzing/charts/tree/master/charts/senzing-console + home: https://github.com/senzing-garage/charts/tree/master/charts/senzing-console icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - senzing @@ -240,8 +240,8 @@ entries: name: Senzing name: senzing-console sources: - - https://github.com/Senzing/charts/tree/master/charts/senzing-console - - https://github.com/Senzing/docker-senzing-console + - https://github.com/senzing-garage/charts/tree/master/charts/senzing-console + - https://github.com/senzing-garage/docker-senzing-console type: application urls: - senzing-console-2.0.0.tgz @@ -255,7 +255,7 @@ entries: version: 1.0.1 description: The Senzing Entity Search WebApp digest: 90d095f6f683c05b63312b11c5db039c85288fa2a32e9ad27f7942475b315ad0 - home: https://github.com/Senzing/charts/tree/master/charts/senzing-entity-search-web-app + home: https://github.com/senzing-garage/charts/tree/master/charts/senzing-entity-search-web-app icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - senzing @@ -264,8 +264,8 @@ entries: name: Senzing name: senzing-entity-search-web-app sources: - - https://github.com/Senzing/charts/tree/master/charts/senzing-entity-search-web-app - - https://github.com/Senzing/entity-search-web-app + - https://github.com/senzing-garage/charts/tree/master/charts/senzing-entity-search-web-app + - https://github.com/senzing-garage/entity-search-web-app type: application urls: - senzing-entity-search-web-app-2.0.0.tgz @@ -279,7 +279,7 @@ entries: version: 1.0.1 description: Performs all of the Senzing initialization requiring "root" authority. digest: 79af41b28a61227d2c0b0cb1c7d4519ed2d9f29a8784a6126a1f84e17be9b4f4 - home: https://github.com/Senzing/charts/tree/master/charts/senzing-init-container + home: https://github.com/senzing-garage/charts/tree/master/charts/senzing-init-container icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - senzing @@ -288,8 +288,8 @@ entries: name: Senzing name: senzing-init-container sources: - - https://github.com/Senzing/charts/tree/master/charts/senzing-init-container - - https://github.com/Senzing/docker-init-container + - https://github.com/senzing-garage/charts/tree/master/charts/senzing-init-container + - https://github.com/senzing-garage/docker-init-container type: application urls: - senzing-init-container-2.0.0.tgz @@ -303,7 +303,7 @@ entries: version: 1.0.1 description: Postgresql client digest: 463609b857e6fd8f6a4079bb6c438e655e2385012da9d9d016695ef2c9bdf56f - home: https://github.com/Senzing/charts/tree/master/charts/senzing-postgresql-client + home: https://github.com/senzing-garage/charts/tree/master/charts/senzing-postgresql-client icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - postgresql @@ -312,8 +312,8 @@ entries: name: Senzing name: senzing-postgresql-client sources: - - https://github.com/Senzing/charts/tree/master/charts/senzing-postgresql-client - - https://github.com/Senzing/postgresql-client + - https://github.com/senzing-garage/charts/tree/master/charts/senzing-postgresql-client + - https://github.com/senzing-garage/postgresql-client type: application urls: - senzing-postgresql-client-2.0.0.tgz @@ -327,7 +327,7 @@ entries: version: 1.0.1 description: Processes Senzing redo records digest: 9e71ce48aa259c72d7ab32c802a50d42289044adedfa79e3cd26830acfd70c59 - home: https://github.com/Senzing/charts/tree/master/charts/senzing-redoer + home: https://github.com/senzing-garage/charts/tree/master/charts/senzing-redoer icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - senzing @@ -340,8 +340,8 @@ entries: name: Senzing name: senzing-redoer sources: - - https://github.com/Senzing/charts/tree/master/charts/senzing-redoer - - https://github.com/Senzing/redoer + - https://github.com/senzing-garage/charts/tree/master/charts/senzing-redoer + - https://github.com/senzing-garage/redoer type: application urls: - senzing-redoer-2.0.0.tgz @@ -355,7 +355,7 @@ entries: version: 1.0.1 description: A stream-based loader for Senzing digest: 4dc93708628b54adc2f9f78ae49cb572cb0be54f83a4f4454a8f77d1414b1e64 - home: https://github.com/Senzing/charts/tree/master/charts/senzing-stream-loader + home: https://github.com/senzing-garage/charts/tree/master/charts/senzing-stream-loader icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - senzing @@ -367,7 +367,7 @@ entries: name: Senzing name: senzing-stream-loader sources: - - https://github.com/Senzing/charts/tree/master/charts/senzing-template + - https://github.com/senzing-garage/charts/tree/master/charts/senzing-template type: application urls: - senzing-stream-loader-2.0.0.tgz @@ -381,7 +381,7 @@ entries: version: 1.0.1 description: A generator of Senzing data to feed a queue digest: 3b61cc1a83997f03c6e8246c81b7d445a62934882dd3be52eadd2531751b8ed2 - home: https://github.com/Senzing/charts/tree/master/charts/senzing-stream-producer + home: https://github.com/senzing-garage/charts/tree/master/charts/senzing-stream-producer icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - senzing @@ -393,8 +393,8 @@ entries: name: Senzing name: senzing-stream-producer sources: - - https://github.com/Senzing/charts/tree/master/charts/senzing-stream-producer - - https://github.com/Senzing/stream-producer + - https://github.com/senzing-garage/charts/tree/master/charts/senzing-stream-producer + - https://github.com/senzing-garage/stream-producer type: application urls: - senzing-stream-producer-2.0.0.tgz @@ -408,7 +408,7 @@ entries: version: 1.0.1 description: A wrapper over yum package installer prepared for Senzing installs digest: d912a6fb1e493923ce6abbe755236edf54d0c0d90f66610256bc0a4df294c832 - home: https://github.com/Senzing/charts/tree/master/charts/senzing-yum + home: https://github.com/senzing-garage/charts/tree/master/charts/senzing-yum icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - senzing @@ -418,8 +418,8 @@ entries: name: Senzing name: senzing-yum sources: - - https://github.com/Senzing/charts/tree/master/charts/senzing-yum - - https://github.com/Senzing/docker-yum + - https://github.com/senzing-garage/charts/tree/master/charts/senzing-yum + - https://github.com/senzing-garage/docker-yum type: application urls: - senzing-yum-2.0.0.tgz @@ -433,7 +433,7 @@ entries: version: 1.0.1 description: SwaggerAPI Swagger UI digest: e974a5547863f449f7e53343e73722aabc57d0a26a37f6951e966a96d5233c06 - home: https://github.com/Senzing/charts/tree/master/charts/swaggerapi-swagger-ui + home: https://github.com/senzing-garage/charts/tree/master/charts/swaggerapi-swagger-ui icon: https://avatars2.githubusercontent.com/u/43552726?s=200&v=4 keywords: - senzing @@ -444,7 +444,7 @@ entries: sources: - https://github.com/swagger-api/swagger-ui - https://hub.docker.com/r/swaggerapi/swagger-ui - - https://github.com/Senzing/charts/tree/master/charts/swaggerapi-swagger-ui + - https://github.com/senzing-garage/charts/tree/master/charts/swaggerapi-swagger-ui type: application urls: - swaggerapi-swagger-ui-2.0.0.tgz diff --git a/stream-loader.py b/stream-loader.py index f76cd1e..dffd02c 100755 --- a/stream-loader.py +++ b/stream-loader.py @@ -68,7 +68,7 @@ __date__ = '2018-10-29' __updated__ = '2022-04-01' -SENZING_PRODUCT_ID = "5001" # See https://github.com/Senzing/knowledge-base/blob/master/lists/senzing-product-ids.md +SENZING_PRODUCT_ID = "5001" # See https://github.com/senzing-garage/knowledge-base/blob/master/lists/senzing-product-ids.md log_format = '%(asctime)s %(message)s' # Working with bytes. @@ -879,7 +879,7 @@ def get_parser(): for argument, argument_value in arguments.items(): subcommands[subcommand]['arguments'][argument] = argument_value - parser = argparse.ArgumentParser(prog="stream-loader.py", description="Initialize Senzing installation. For subcommand help, run 'stream-loader.py --help' For more information, see https://github.com/Senzing/stream-loader") + parser = argparse.ArgumentParser(prog="stream-loader.py", description="Initialize Senzing installation. For subcommand help, run 'stream-loader.py --help' For more information, see https://github.com/senzing-garage/stream-loader") subparsers = parser.add_subparsers(dest='subcommand', help='Subcommands (SENZING_SUBCOMMAND):') for subcommand_key, subcommand_values in subcommands.items(): @@ -957,7 +957,7 @@ def get_parser(): "203": " WARNING: License will expire soon. Only {0} days left.", "221": "AWS SQS redrive: {0}", "292": "Configuration change detected. Old: {0} New: {1}", - "293": "For information on warnings and errors, see https://github.com/Senzing/stream-loader#errors", + "293": "For information on warnings and errors, see https://github.com/senzing-garage/stream-loader#errors", "294": "Version: {0} Updated: {1}", "295": "Sleeping infinitely.", "296": "Sleeping {0} seconds.",