Skip to content

Commit

Permalink
Added javadoc to isImportedExecution method
Browse files Browse the repository at this point in the history
  • Loading branch information
L2JE committed Oct 19, 2023
1 parent 715bca5 commit 0afcd68
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@ class AzureFileStoragePlugin implements ExecutionFileStoragePlugin, ExecutionMul
container.createIfNotExists()
}

/**
* @param context execution context
* @return true if the given context has the expanded path of the log files in the `outputfilepath` variable
*/
protected static boolean isImportedExecution(Map<String, ?> context){
return context != null && context.get("isRemoteFilePath") != null && context.get("isRemoteFilePath") == "true"
}
Expand Down

0 comments on commit 0afcd68

Please sign in to comment.