Hi @leeneshk
Is this issue still present?
Hello @liangshiwei
The issue has been resolved, we have not experienced issues thereafter, however, Is there some sort of SLA that we can get from abp.io that safe guards both parties from any downtime or any issues down the line?
The reason why I am asking this, is that we have a set SLA with our clients that stipulates a certain timeframe for a major issue to be resolved, and let's say that if we needed to get a hotfix out when the downtime occurred, we would've been in breach of our SLA in any case.
How sure are we that there would not be any issues like this in the future? Also I remember around a month ago, abp.io had the Cloudfare attack which affected the domains and sub-domains, how can we resolve that?
So I need to provide some proof of an SLA to my security council regarding this, would you guys be able to provide me with some documentation in the form of an SLA or something?
I have also asked this on my initial query: https://abp.io/support/questions/8610/Issue-with-nugetabpio
Thank you.
Great to hear that! Sorry for the temporary inconvenience and thanks for your understanding. Regards.
Hello EngincanV,
I hope you are doing well, I would like to ask, in terms of this very same issue,
Is there some sort of SLA that we can get from abp.io that safe guards both parties from any downtime or any issues down the line?
The reason why I am asking this, is that we have a set SLA with our clients that stipulates a certain timeframe for a major issue to be resolved, and let's say that if we needed to get a hotfix out when the downtime occurred, we would've been in breach of our SLA in any case.
How sure are we that there would not be any issues like this in the future? Also I remember around a month ago, abp.io has the Cloudfare attack which affected the domains and sub-domains, how can we resolve that?
So I need to provide some proof of an SLA to my security council regarding this, would you guys be able to provide me with some documentation in the form of an SLA or something?
Thank you
Thank you @EngincanV, we have a successful build on our side
Thank you, I am busy building our pipeline again, I will let you guys know shortly
Hello everyone,
I hope that we can get a speedy resolution on this issue, clearly its an issue on your side abp.io because we had successful builds the entire time without any issues.
We have deployments that need to be executed and this is causing a delay within our sprints.
Please see the urgency in this issue.
Hi, we are currently working on that, I'll update you soon.
Hello @EngincanV
Thank you very much, I appreciate that
Hello everyone,
I hope that we can get a speedy resolution on this issue, clearly its an issue on your side abp.io because we had successful builds the entire time without any issues.
We have deployments that need to be executed and this is causing a delay within our sprints.
Please see the urgency in this issue.
The Azure pipeline uses the NuGet.config file provided in our project, which only includes api.nuget.org and nuget.abp.io. This issue starts to occur after midday. On my local development machine, when I try to list nuget.abp.io packages, the IDE asks for a username and password.
@abodur, the same happened on our side, it randomly occurred, and we cannot be the only people experiencing this issue though, there must be more, because the 403 Forbidden error only occurs on the @Volo packages
I have a longer list but just adding one here for context:
C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.TextTemplating.Scriban' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.texttemplating.scriban/index.json'. [C:\a\1\s\xxx\xxx.sln]
So I am seeing three sources.
@EngincanV
I tested locally, and I have a successful build but the issue still persists on the build pipeline, I can concur with @abodur as well.
This issue occurred from today, we had successful builds the entire time.
Hi, the package you are mentioned is an open-source package, which can be seen at https://www.nuget.org/packages/Volo.Abp.DistributedLocking.Abstractions.
So, it's normal that this package can't be found in the nuget.abp.io. If you got this error when you build/restore your solution, your NuGet.Config file might be wrong. Can you share it please?
Hi @EngincanV
Thank you for your response,
This is my Nuget.Config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="nuget.abp.io" value="https://nuget.abp.io/xxx/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="" />
<package pattern="Microsoft." />
<package pattern="Volo." />
</packageSource>
<packageSource key="nuget.abp.io">
<package pattern="Volo." />
</packageSource>
</packageSourceMapping>
</configuration>We added packageSourceMapping to the NuGet.config for faster restoring Volo.* packages, however, it seems it might created an issue in your case. So, can you please update this file as follows:
<?xml version="1.0" encoding="utf-8"?> <configuration> <packageSources> <add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> <add key="ABP Commercial NuGet Source" value="https://nuget.abp.io/xxx/v3/index.json" /> </packageSources> </configuration>
Then, retry to restore/build your project. Please, don't forget to replace the xxx part with your api-key and let me know if it works.
Thank you very much, I am busy testing, I should give feedback shortly