Skip to content

Commit

Permalink
Remove redundant dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Nov 25, 2018
1 parent ca63756 commit 9bf1a5b
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ public Set<JobActuatorHandle> create(RunnerContext context)
}
Bootstrap app = new Bootstrap(
new FlinkRunnerModule(),
new YarnModule(),
binder -> {
//----------------------------------
binder.bind(PipelinePluginManager.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ public Set<JobActuatorHandle> create(RunnerContext context)

Bootstrap app = new Bootstrap(
new SparkRunnerModule(),
new YarnModule(),
binder -> {
//------------------------
binder.bind(PipelinePluginManager.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import com.google.inject.Binder;
import com.google.inject.Module;
import com.google.inject.Scopes;
import ideal.sylph.runner.spark.yarn.SparkAppLauncher;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

Expand All @@ -33,6 +32,5 @@ public void configure(Binder binder)
binder.bind(StreamEtlActuator.class).in(Scopes.SINGLETON);
binder.bind(Stream2EtlActuator.class).in(Scopes.SINGLETON);
binder.bind(SparkSubmitActuator.class).in(Scopes.SINGLETON);
binder.bind(SparkAppLauncher.class).in(Scopes.SINGLETON);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
public class Stream2EtlActuator
extends EtlJobActuatorHandle
{
@Inject private YarnClient yarnClient;
@Inject private PipelinePluginManager pluginManager;

@NotNull
Expand Down

0 comments on commit 9bf1a5b

Please sign in to comment.