Re: Error in /jars/upload curl request

2023-11-07 Thread Tauseef Janvekar
compose > a multipart mail message to transmit. > >> > >> This enables uploading of binary files etc. To force the > 'content' part to be a file, prefix the file > >> name with an @ sign. To just get the content part from a > file

Re: Error in /jars/upload curl request

2023-11-07 Thread Yu Chen
, prefix the file >> name with an @ sign. To just get the content part from a >> file, prefix the file name with the symbol <. >> The difference between @ and < is then that @ makes a file get >> attached in the post as a file upload, &g

Re: Error in /jars/upload curl request

2023-11-07 Thread Tauseef Janvekar
prefix the file >> name with an @ sign. To just get the content part from a >> file, prefix the file name with the symbol <. >> The difference between @ and < is then that @ makes a file >> get attached in the post as a file upload, >> wh

Re: Error in /jars/upload curl request

2023-11-07 Thread Yu Chen
a file get >> attached in the post as a file upload, >> while the < makes a text field and just get the contents for >> that text field from a file. >> >> >> Best, >> Yu Chen >> 发件人: Tauseef Janvekar > <mailto:tau

Re: Error in /jars/upload curl request

2023-11-06 Thread Tauseef Janvekar
The difference between @ and < is then that @ makes a file > get attached in the post as a file upload, > while the < makes a text field and just get the contents for > that text field from a file. > > > Best, > Yu Chen > ---------- >

Re: Error in /jars/upload curl request

2023-11-06 Thread Junrui Lee
Hi, Tauseef Based on the screenshot you provided, it appears that you have not included the '@' prefix before the file path in your curl command. This prefix is necessary to indicate to curl that the specified argument should be treated as a file to be uploaded. Please add the '@' prefix before t

回复: Error in /jars/upload curl request

2023-11-06 Thread Chen Yu
le. Best, Yu Chen 发件人: Tauseef Janvekar 发送时间: 2023年11月6日 22:27 收件人: user@flink.apache.org 主题: Error in /jars/upload curl request I am using curl request to upload a jar but it throws the below error [image.png] Received unknown attribute jarfile. Not sure what

Error in /jars/upload curl request

2023-11-06 Thread Tauseef Janvekar
I am using curl request to upload a jar but it throws the below error [image: image.png] Received unknown attribute jarfile. Not sure what is wrong here. I am following the standard documentation https://nightlies.apache.org/flink/flink-docs-master/docs/ops/rest_api/ Please let me know if I have