Skip to content

Commit

Permalink
Remove unused buckets attribute
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <[email protected]>
  • Loading branch information
pditommaso committed May 13, 2023
1 parent 80487d4 commit c3d89d9
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ class FusionScriptLauncher extends BashWrapperBuilder {

static FusionScriptLauncher create(TaskBean bean, String scheme) {

final buckets = new HashSet(10)
final remoteWorkDir = bean.workDir

// map bean work and target dirs to container mount
Expand All @@ -65,10 +64,10 @@ class FusionScriptLauncher extends BashWrapperBuilder {
if( bean.scratch==null )
bean.scratch = true

return new FusionScriptLauncher(bean, scheme, remoteWorkDir, buckets)
return new FusionScriptLauncher(bean, scheme, remoteWorkDir)
}

FusionScriptLauncher(TaskBean bean, String scheme, Path remoteWorkDir, Set<String> buckets) {
FusionScriptLauncher(TaskBean bean, String scheme, Path remoteWorkDir) {
super(bean)
// keep track the google storage work dir
this.scheme = scheme
Expand Down

0 comments on commit c3d89d9

Please sign in to comment.