Results 43 comments of Matthew Baker

I am also having this issue. Were you able to resolve it without downgrading Node @patvdleer?

@noxdafox im having the same issue as @Burnsys2, where duplicates are getting queued even in basic cases. I don't have HA turned on in my cluster of anything like that

I was actually able to figure this out by doing this: ``` cloudFilesProvider.CreateObject(cloud_container, stream, objectName, region: "DFW", headers: new Dictionary { { CloudFilesProvider.DetectContentType, "True" } }); var meta = cloudFilesProvider.GetContainerCDNHeader(cloud_container,...

Also, in the .NET `CreateObject` example here (https://developer.rackspace.com/docs/cloud-files/getting-started/), what is the point of reading the FileStream into a byte[] if you don't use it when calling CreateObject?

Turns out the uploads were succeeding, but I wasn't setting `stream.Location` back to `0` before calling `CreateObject`.

well at least I'm not missing anything fundamental in the API. I'm in the process of porting a PHP application into .NET that uses the PHP rackspace library, so sometimes...

one thing I noticed is that the scenario I proposed above does not work if the container doesn't have CDN enabled. For some of our containers that's the case, and...

@jofftiquez I only just learned about the issue this morning and posted this before I dug in. Looks like the solution is (I think) twofold 1. I added `ie >=...