I am facing issue in copying files from Edgenode to ADLS. For this i used AZCOPY and here is the code for that. It ran perfectly fine in Dev environment.
When it comes to the test environment it behaves odd,
export AZCOPY_AUTO_LOGIN_TYPE="SPN"
export AZCOPY_SPA_APPLICATION_ID="$client_id"
export AZCOPY_SPA_CLIENT_SECRET="$client_secret"
export AZCOPY_TENANT_ID="$tenant_id"
az login --service-principal -u $client_id --tenant $tenant_id -p $client_secret
Azcopy code azcopy cp --overwrite "True" "$src_file_path" "$dest_file_path" --put-md5
and the error snipped which I am getting in test environment is enter image description here
Any suggestions or solutions please?

