-
Notifications
You must be signed in to change notification settings - Fork 0
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
GH-1163: Support Somatic Genomes in production. #324
Conversation
c699cbf
to
3b9a650
Compare
b0768d3
to
335eeac
Compare
api/src/wfl/auth.clj
Outdated
[] | ||
(-> (service-account-credentials) .refreshAccessToken .getTokenValue)) | ||
(some-> (service-account-credentials) .refreshAccessToken .getTokenValue)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why some->
? If we can't find any service account credentials then we're kind of stuffed? Why not error here instead of getting a 403 later?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK. Was propagating from above.
makerules/modules.mk
Outdated
INTEGRATION := $(DERIVED_MODULE_DIR)/integration.$(TIMESTAMP) | ||
LINT := $(DERIVED_MODULE_DIR)/lint.$(TIMESTAMP) | ||
PREBUILD := $(DERIVED_MODULE_DIR)/prebuild.$(TIMESTAMP) | ||
SYSTEM := $(DERIVED_MODULE_DIR)/system.$(TIMESTAMP) | ||
UNIT := $(DERIVED_MODULE_DIR)/unit.$(TIMESTAMP) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These were previously sorted in order of execution?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Execution order is determined by dependence, but OK.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great to me! Thanks for cleaning up the environments
"gs://broad-gotc-dev-wfl-sg-test-inputs/pipeline/G96830/NA12878/v23/NA12878.cram"}}], | ||
:creator (:email @endpoints/userinfo)}) | ||
"gs://broad-gotc-dev-wfl-sg-test-inputs/pipeline/G96830/NA12878/v23/NA12878.cram"}}] | ||
:creator "@workloads/email"}) ; quoted to avoid log spam |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
enigma…
Thank you for the reviews. |
Purpose
Changes
Review Instructions