-
Notifications
You must be signed in to change notification settings - Fork 360
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
Initial JES backend work #102
Conversation
cp /cromwell/docker/run.sh /etc/service/cromwell/run | ||
|
||
# FIXME - now need to set the conf file specifically |
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.
I'd forgotten about this. I modified stuff to use application.conf the correct way (via ConfigFactory.load) instead of the local file link. We shouldn't be doing this stuff at all - however when the server loads up on the VM we will need to pass in some credentials. Unclear at this moment the best way to do that - looking into it
} | ||
|
||
def +(value: String): GoogleCloudStoragePath = { | ||
if (objectName.endsWith("/") || value.startsWith("/")) { |
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.
what if these are both true?
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.
Good point!
c4cca6f
to
96b226e
Compare
@@ -189,11 +190,14 @@ class SlickDataAccess(databaseConfig: Config, val dataAccess: DataAccessComponen | |||
executionInsert.executionId.get, | |||
None, | |||
None) | |||
case j: JesBackend => | |||
dataAccess.localJobsAutoInc += new LocalJob(executionInsert.executionId.get, None, None) // FIXME: Placeholder? |
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.
Doesn't appear there are any current DataAccess
callers that are actually using these tables, but this should eventually be dataAccess.jesJobsAutoInc
, not localJobsAutoInc
.
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.
And presumably JesJob
?
ede05d5
to
c4ee9cb
Compare
# The first commit's message is: Initial JES backend work # The 2nd commit message will be skipped: # Make application.conf basic
c4ee9cb
to
93250fa
Compare
No description provided.