nebitrams

Results 13 comments of nebitrams

I see this error only during Archiving. Is anyone also facing this issue? ### Error while Archiving ``` Multiple commands produce '/Users/me/Library/Developer/Xcode/DerivedData/MyApp-gzgwdoovsnudgranphnqjcrcijbi/Build/Intermediates.noindex/ArchiveIntermediates/My App/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Parse.framework': 1) Target 'Parse' has create directory command...

> I am still getting the multiple commands error with the most recent master. > > > > I am confused because the error is occurring in the widget extension...

Thank you @mtrezza, @dplewis and team for fixing this. Since I can use `directAccess: false` as a work around, I am happy to wait for the bug fix in Nov...

I ran against the REST API directly using curl. The same problem remains. See the result in the second line below. From the server VERBOSE log, I can see the...

The curl response is as follows. See the second line. ``` % ./run_startJob_local.sh {} ``` I can't see the response header from the curl command line. However, I see the...

hi @mtrezza, I apologised that I was confused about iOS SDK. Indeed the iOS SDK doesn't matter. I have further simplified my test case to focus on the `return value`...

I did further test by varying parse-server version. Parse.Cloud.startJob still returns jobStatusId in parse-server `5.5.0`. However, starting from `6.0.0`, it returns a dictionary (looks like empty).

> What is the value of `var jobId` in your Cloud Function? What are you sending in `request.params`? `var jobId` is a local variable that receive return value from `await...

jobId is an empty object. I used the following code to print jobId. Is there other way to inspect it? ``` jobId is [object Object] // console.log("jobId is " +...

This is the output I ran the same code against parse server 5.5.0 ``` jobId is YduU2JwgRm // console.log("jobId is " + jobId); YduU2JwgRm // console.log(jobId); ``` I observed different...