Skip to content

Commit

Permalink
[FSTORE-1053] Never ending materialization job (#1589)
Browse files Browse the repository at this point in the history
  • Loading branch information
bubriks authored and SirOibaf committed Oct 19, 2023
1 parent 4398ba1 commit f6dbf57
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,10 @@ public final void execute(String args) {
public Void run() {
YarnClientWrapper yarnClientWrapper = null;
try {
yarnClientWrapper = services.getYarnClientService().getYarnClient(hdfsUser.getUserName());
yarnClient = yarnClientWrapper.getYarnClient();
boolean proceed = false;
try {
yarnClientWrapper = services.getYarnClientService().getYarnClient(hdfsUser.getUserName());
yarnClient = yarnClientWrapper.getYarnClient();
proceed = setupJob();
} catch (Exception ex) {
LOG.log(Level.SEVERE, "Job Initialization Failed", ex);
Expand Down

0 comments on commit f6dbf57

Please sign in to comment.