Skip to content

Commit

Permalink
fix: dropped non used env value + fixed issue in yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
MacQSL committed Nov 15, 2024
1 parent 84b8166 commit 0791469
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion api/.pipeline/lib/api.deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ const apiDeploy = async (settings) => {
// Persistent Volume
VOLUME_CAPACITY: phases[phase].volumeCapacity,
// BioHub Platform (aka: Backbone)
BACKBONE_PUBLIC_API_HOST: phases[phase].backbonePublicApiHost,
BACKBONE_INTERNAL_API_HOST: phases[phase].backboneInternalApiHost,
BACKBONE_INTAKE_PATH: phases[phase].backboneIntakePath,
BACKBONE_ARTIFACT_INTAKE_PATH: phases[phase].backboneArtifactIntakePath,
Expand Down
2 changes: 1 addition & 1 deletion api/.pipeline/templates/api.dc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ objects:
# - name: MAX_REQ_BODY_SIZE
# value: ${MAX_REQ_BODY_SIZE}
- name: MAX_UPLOAD_NUM_FILES
value: MAX_UPLOAD_NUM_FILES
value: ${MAX_UPLOAD_NUM_FILES}
- name: MAX_UPLOAD_FILE_SIZE
value: ${MAX_UPLOAD_FILE_SIZE}
# Object Store (S3)
Expand Down
1 change: 0 additions & 1 deletion api/src/utils/env-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ export const EnvSchema = z.object({

// Biohub
BACKBONE_INTERNAL_API_HOST: ZodEnvString,
BACKBONE_PUBLIC_API_HOST: ZodEnvString,
BACKBONE_INTAKE_PATH: ZodEnvString,
BACKBONE_ARTIFACT_INTAKE_PATH: ZodEnvString,
BIOHUB_TAXON_PATH: ZodEnvString,
Expand Down

0 comments on commit 0791469

Please sign in to comment.