Skip to content

Commit

Permalink
Whitespace cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Will-Lo committed Oct 18, 2024
1 parent 16e8be0 commit 9c8c1e5
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,6 @@ private void addContainerLocalResources(Path destDir, Map<String, LocalResource>
}



protected ByteBuffer getSecurityTokens() throws IOException {
Credentials credentials = UserGroupInformation.getCurrentUser().getCredentials();
Closer closer = Closer.create();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@ public GobblinYarnAppLauncher(Config config, YarnConfiguration yarnConfiguration
GobblinYarnConfigurationKeys.DEFAULT_GOBBLIN_YARN_DETACH_ON_EXIT);
this.appLauncherMode = ConfigUtils.getString(this.config, GOBBLIN_YARN_APP_LAUNCHER_MODE, DEFAULT_GOBBLIN_YARN_APP_LAUNCHER_MODE);
this.jarCacheEnabled = ConfigUtils.getBoolean(this.config, GobblinYarnConfigurationKeys.JAR_CACHE_ENABLED, GobblinYarnConfigurationKeys.JAR_CACHE_ENABLED_DEFAULT);

try {
config = addDynamicConfig(config);
outputConfigToFile(config);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ public class GobblinYarnConfigurationKeys {

public static final String YARN_APPLICATION_LIB_JAR_LIST = GOBBLIN_YARN_PREFIX + "lib.jar.list";


// Used to store the start time of the app launcher to propagate to workers and appmaster
public static final String YARN_APPLICATION_LAUNCHER_START_TIME_KEY = GOBBLIN_YARN_PREFIX + "application.start.time";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,5 @@ public void testGetJarListFromConfigs() {
Assert.assertTrue(jars.contains("b.jar"));
Assert.assertTrue(jars.contains("c.jar"));
Assert.assertTrue(jars.contains("d.jar"));

}
}

0 comments on commit 9c8c1e5

Please sign in to comment.