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

ID-347 Remove Martha References #7384

Merged
merged 2 commits into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ class DrsCloudNioFileSystemProvider(rootConfig: Config,
drsReadInterpreter: DrsReadInterpreter
) extends CloudNioFileSystemProvider {

lazy val drsResolverConfig =
if (rootConfig.hasPath("resolver")) rootConfig.getConfig("resolver") else rootConfig.getConfig("martha")
lazy val drsResolverConfig = rootConfig.getConfig("resolver")
lazy val drsConfig: DrsConfig = DrsConfig.fromConfig(drsResolverConfig)

lazy val drsPathResolver: EngineDrsPathResolver =
Expand Down
2 changes: 1 addition & 1 deletion docs/filesystems/Filesystems.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ filesystems {
class = "cromwell.filesystems.drs.DrsFileSystemConfig"
config {
resolver {
url = "https://martha-url-here or https://drshub-url-here"
url = https://drshub-url-here"
# The number of times to retry failures connecting or HTTP 429 or HTTP 5XX responses, default 3.
num-retries = 3
# How long to wait between retrying HTTP 429 or HTTP 5XX responses, default 10 seconds.
Expand Down
Loading