Skip to content
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

[issue-246] - Allow cancellation of import tasks #253

Merged
merged 3 commits into from
May 8, 2022

Conversation

carlosthe19916
Copy link
Member

@carlosthe19916 carlosthe19916 commented May 8, 2022

Resolves: #246

@project-openubl-preview-bot
Copy link
Contributor

🚀 Container image Preview ✨

The creation of the container image might take aproximately 10 minutes. Once it is available you can pull it using:

docker pull ghcr.io/carlosthe19916/searchpe/searchpe:issue-246
  • To watch the current status of the container image creation visit Workflow runs
  • To see the list of packages created by the boot visit Packages

Docker compose
version: "3"
services:
  postgresql:
    image: postgres:13.1
    ports:
      - 5432:5432
    environment:
      POSTGRES_DB: searchpe_db
      POSTGRES_USER: db_username
      POSTGRES_PASSWORD: db_password
    healthcheck:
      test: [ "CMD-SHELL", "pg_isready -U db_username -d searchpe_db" ]
      interval: 10s
      timeout: 5s
      retries: 5

  searchpe:
    image: quay.io/projectopenubl/searchpe:early-access
    ports:
      - 8180:8080
    environment:
      QUARKUS_HTTP_PORT: 8080
      QUARKUS_DATASOURCE_USERNAME: db_username
      QUARKUS_DATASOURCE_PASSWORD: db_password
      QUARKUS_DATASOURCE_JDBC_URL: jdbc:postgresql://postgresql:5432/searchpe_db
    healthcheck:
      test: [ "CMD", "curl", "-f", "http://localhost:8080/q/health" ]
      interval: 10s
      timeout: 5s
      retries: 5
    depends_on:
      postgresql:
        condition: service_healthy

@codecov
Copy link

codecov bot commented May 8, 2022

Codecov Report

Merging #253 (39c31c0) into master (b845893) will increase coverage by 0.01%.
The diff coverage is 0.00%.

@@            Coverage Diff            @@
##           master    #253      +/-   ##
=========================================
+ Coverage    1.37%   1.39%   +0.01%     
=========================================
  Files          54      49       -5     
  Lines         799     790       -9     
  Branches      171     166       -5     
=========================================
  Hits           11      11              
+ Misses        787     778       -9     
  Partials        1       1              
Flag Coverage Δ
unitests 1.39% <0.00%> (+0.01%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
src/main/webapp/src/App.tsx 0.00% <ø> (ø)
src/main/webapp/src/pages/users/users.tsx 0.00% <0.00%> (ø)
src/main/webapp/src/pages/versions/versions.tsx 0.00% <0.00%> (ø)
src/main/webapp/src/queries/versions.ts 0.00% <0.00%> (ø)
...hared/components/version-status/version-status.tsx 0.00% <0.00%> (ø)
src/main/webapp/src/store/rootReducer.tsx 0.00% <ø> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update b845893...39c31c0. Read the comment docs.

@carlosthe19916 carlosthe19916 merged commit e0f9d75 into project-openubl:master May 8, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
No open projects
Status: Done
Development

Successfully merging this pull request may close these issues.

Allow cancel/deletion of versions at any point in time
2 participants