You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've checked in the GitHub project settings, and the named ENDJIN_AZURESTORAGECONNECTIONSTRING secret is present. But the unit tests that actually require the TestSettings__AzureStorageConnectionString environment variable to be set are behaving as if it's not there.
and as you can see, we call back to a value of UseDevelopmentStorage=true if the setting is absent. We're getting these test failures:
No connection could be made because the target machine actively refused it. (127.0.0.1:10000))
which suggests that it's using the fallback value—that's the address and port number the storage client will use if you tell it to use development storage.
I think something may be going wrong in set-env-vars-and-secrets because of this warning:
Can't add secret mask for empty string in ##[add-mask] command.
Neither of those Write-Host ("::add-mask::... lines should be producing an empty string. This suggest that either $env:INCOMING_SECRETS is empty, or that one of the values it contains is empty.
Obviously we can't just dump out the whole thing, but I was wondering if it would be possible for make the foreach look that adds each secret to $env:GITHUB_ENV display the name of each secret it adds. That way it would be possible to tell whether the entire INCOMING_SECRETS have gone missing, or whether it's just a particular value.
The text was updated successfully, but these errors were encountered:
In https://github.com/corvus-dotnet/Corvus.Tenancy/actions/runs/13545108464/job/37854990278 we seem to be having a problem where a secret isn't flowing through to where it's needed.
We set it here:
https://github.com/corvus-dotnet/Corvus.Tenancy/blob/bb551956141f7153748c906d238cd4d24eee56cd/.github/workflows/build.yml#L52
I've checked in the GitHub project settings, and the named
ENDJIN_AZURESTORAGECONNECTIONSTRING
secret is present. But the unit tests that actually require theTestSettings__AzureStorageConnectionString
environment variable to be set are behaving as if it's not there.We retrieve the setting here:
https://github.com/corvus-dotnet/Corvus.Tenancy/blob/a5c3b347cc012f888d164e8cd1581db589f84bab/Solutions/Corvus.Tenancy.Specs/Bindings/TenancyContainerScenarioBindings.cs#L154
and then use that value here:
https://github.com/corvus-dotnet/Corvus.Tenancy/blob/a5c3b347cc012f888d164e8cd1581db589f84bab/Solutions/Corvus.Tenancy.Specs/Features/BlobStorage/BlobStorageLegacyMigrationSteps.cs#L54-L56
and as you can see, we call back to a value of
UseDevelopmentStorage=true
if the setting is absent. We're getting these test failures:which suggests that it's using the fallback value—that's the address and port number the storage client will use if you tell it to use development storage.
I think something may be going wrong in
set-env-vars-and-secrets
because of this warning:https://github.com/corvus-dotnet/Corvus.Tenancy/actions/runs/13545108464/job/37854990278#step:3:71
Neither of those
Write-Host ("::add-mask::...
lines should be producing an empty string. This suggest that either$env:INCOMING_SECRETS
is empty, or that one of the values it contains is empty.Obviously we can't just dump out the whole thing, but I was wondering if it would be possible for make the
foreach
look that adds each secret to$env:GITHUB_ENV
display the name of each secret it adds. That way it would be possible to tell whether the entireINCOMING_SECRETS
have gone missing, or whether it's just a particular value.The text was updated successfully, but these errors were encountered: