Re: How to read the file in slave node?

2018-10-04 Thread Jesse Glick
On Thu, Oct 4, 2018 at 3:18 AM JIHYE LEE wrote: > at java.io.FileInputStream.(FileInputStream.java:138) > at org.apache.http.entity.FileEntity.writeTo(FileEntity.java:94) > […] > at > com.toast.cloud.smartdl.builduploader.request.objectstorage.ObjectStorageRequestImpl.uploadObject(ObjectStorageRe

Re: How to read the file in slave node?

2018-10-04 Thread JIHYE LEE
2018년 10월 2일 화요일 오후 5시 40분 45초 UTC+9, JIHYE LEE 님의 말: > > Hi ! > I'm developing jenkins plugin using pipeline. > > There is part of code. > > private int uploadObject(String containerName, String path, FilePath > uploadFilePath) > { >if(false == uploadFilePath.exsit()) { // result is true!

Re: How to read the file in slave node?

2018-10-04 Thread JIHYE LEE
> > java.io.FileNotFoundException: > /Users/builder/workspace/smartdl_test/smdl/abc.txt (No such file or directory) > at java.io.FileInputStream.open0(Native Method) > at java.io.FileInputStream.open(FileInputStream.java:195) > at java.io.FileInputStream.(FileInputStream.java:13

Re: How to read the file in slave node?

2018-10-03 Thread Jesse Glick
On Tue, Oct 2, 2018 at 4:40 AM JIHYE LEE wrote: > Result Log Message > java.lang.IllegalArgumentException: > /Users/builder/workspace/test/project_test/abc.txt does not exist At a bare minimum you would need to include the stack trace from this exception, in order for readers of this list to eve

How to read the file in slave node?

2018-10-02 Thread JIHYE LEE
Hi ! I'm developing jenkins plugin using pipeline. There is part of code. private int uploadObject(String containerName, String path, FilePath uploadFilePath) { if(false == uploadFilePath.exsit()) { // result is true!! exception; } InputStreamEntity inputStrea