adasauce

Results 21 comments of adasauce

Is there a workaround to this in the short term without disabling TLS? Is it avoided by just not watching the log output?

You can go to preferences -> tools -> add custom tool. call it uppercase edit script ```python from sys import stdin, stdout, stderr, argv input_string = stdin.read() stdout.write(input_string.upper()) ``` and...

Happy to hear it was a helpful suggestion 😄 I was a little worried you would take it the wrong way telling you to go away. I've been adding up...

Sory to bring this issue back from the dead, I still don't see an ARM build in the releases, and the linked issue was closed. Did I miss a newer...

thanks for reporting this @bashgeek , I was pulling my hair out a bit trying to figure out why DNS wasn't working properly. I've baked openresolv into my debian images...

@mlsmaycon thanks for providing this example as a sidecar example, it worked great for me. I looked around the documentation for something like this and didn't find anything, it might...

@wzrdtales I was able to get backups working with cockroachdb using this patch: ``` diff --git a/weed/s3api/s3api_objects_list_handlers.go b/weed/s3api/s3api_objects_list_handlers.go index 78b77a044..8a1a91d66 100644 --- a/weed/s3api/s3api_objects_list_handlers.go +++ b/weed/s3api/s3api_objects_list_handlers.go @@ -47,10 +47,6 @@ func...

> Having not checked this in detail, is `cursor.maxKeys` decreasing per iteration, or per path that matched? It looks to me that it is the former, but would need to...

> cool, are you going to put a PR out for this? I do plan to come back to this soon and fully test + open a PR. I just...

@kmlebedev thanks for pointing out the test suite, I had the implementation totally wrong according to ceph's suite. I rebuilt the container using latest s3-tests because there many more delimiter...