Re: string interpolation broken in azureblob

2024-07-02 Thread Andrew Phillips
Turns out the problem was that azureblob doesn't honor CredentialSupplier like aws-s3. Argh - glad you were able to figure it out! ap

Re: string interpolation broken in azureblob

2024-07-02 Thread John Calcote
Turns out the problem was that azureblob doesn’t honor CredentialSupplier like aws-s3. We changed to using CredentialSupplier instead of passing a Credential and the username and password never make it into the context. Easy to fix - hard to find. Thanks for the quick response. John On Tue, Jul

Re: string interpolation broken in azureblob

2024-07-02 Thread Andrew Phillips
but still digging through that. Looks like ExpandProperties is where this happens: https://github.com/apache/jclouds/blob/master/core/src/main/java/org/jclouds/functions/ExpandProperties.java Given that this hasn't changed and probably isn't broken given how widely it's used, my first questio

Re: string interpolation broken in azureblob

2024-07-02 Thread Andrew Phillips
Does anyone know which library is responsible for this? Judging by testVariablesReplaceOnEndpoint() in ContextBuilderTest [1], I suspect jclouds is doing this itself. I'm assuming it's somewhere in ContextBuilder [2] but still digging through that. Hope that helps! ap [1] https://github.c