Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ public class DownloadConfiguration {
private String linkTemplate;
private String fileName;
private String agentFileName;
private String executablePath;

}
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ private com.openframe.data.model.nats.DownloadConfiguration mapToNatsDownloadCon
natsDownloadConfig.setFileName(downloadConfiguration.getFileName());
natsDownloadConfig.setAgentFileName(downloadConfiguration.getAgentFileName());
natsDownloadConfig.setLink(downloadConfigurationResolver.resolve(downloadConfiguration, version));

natsDownloadConfig.setExecutablePath(downloadConfiguration.getExecutablePath());

return natsDownloadConfig;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ public class DownloadConfiguration {
private String fileName;
private String agentFileName;
private String link;
private String executablePath;

}