Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.

If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!

  • This topic is deleted!

    3
    3
    0 Votes
    3 Posts
    15 Views
  • Problem with Vulnerabilities in docker with Clair

    12
    4
    0 Votes
    12 Posts
    33 Views
    rhessingerR
    Hi @w-repinski_1472, We currently do not have any mechanism for alerting the user when an extension update is available. Our guidance around this is to check extensions for updates after a product is upgraded or when instructed by support. In this case, it was my fault for not alerting you to upgrade the extension to fix this issue. I'm sorry for that and I will make sure this does not happen again. Also, many extensions are included in the install package. These extensions are updated automatically when the product is upgraded. So this won't be a problem with most extensions, it just so happens that the clair extension is not an included one. Please let me know if you have any other questions for us. Thanks, Rich
  • Proget Service/Site Crashes with 500 Error

    4
    0 Votes
    4 Posts
    20 Views
    J
    @stevedennis said in Proget Service/Site Crashes with 500 Error: shared memory provider error 40 Thank you for the insights, I was also thinking the sql server was the most significant thing. It is on the same server but it's also a virtual server, I don't think it's a hardware failure there. There is another sql server running on the server for chocolatey central management, there may have been a conflict with a mismatched version dependency on that app for the dotnet-aspnetmodule-v2 where I need the 16.x version for CCM but I accidentally upgraded to the 17.x version. At the moment the issues hasn't recurred since the day I reported it and I'm hoping having fixed that dependency has fixed the issue. I found some other things that mention local sql aliases needing to exist, I do use many dns aliases in the server's config so I might try making those as sql named pipe aliases to see if that makes any difference, though it seems a long shot.
  • SQL Timeout When Starting Agent Service

    4
    0 Votes
    4 Posts
    15 Views
    stevedennisS
    Hi @justin-zollar_1098 , At first, it looks like debug-level logging is enabled, so I would definitely disable that under Admin > Advanced Settings > Diagnostics.MinimumLogLevel. It should be 20. The most common reason for a SQL Timeout (i.e. if you google the problem) is a SQL query that is taking too long. That shouldn't happen in Otter, but it sometimes does, especially when there is a lot of data and some non-optimzed queries. A SQL Timeout when starting the Otter Service is unusual, and it may not be related to SQL queries. The first thing I would check... are these queries actually taking that long to run in the database? You can use a tool like SQL Server Profiler or resource monitor, which will show you what's going on. You can then try running those queries directly against the database, and see if they're also taking an eternity. It's very possible that SQL Server isn't the issue at all. It could be network related - and we've even seen some bad Windows updates trigger some strange side-effects to the Windows wait handles. Best, Steve
  • ProGet 2023.13: Delay after package upload

    3
    0 Votes
    3 Posts
    23 Views
    C
    Hi @Dan_Woolf, so it seems to be a long known issue: https://github.com/NuGet/Home/issues/3116 Thank you for your help. Caterina
  • DROP path UNC

    2
    0 Votes
    2 Posts
    8 Views
    stevedennisS
    Hi @jerome-virot_4088 , Linux does not support UNC paths, so you'll need to mount the appropriate machine and drive to a local directory under the Linux OS. Once this has been done, you can then map the volume in your Docker container, and configure the Drop Path in ProGet. Best, Steve
  • Delete asset by age

    6
    0 Votes
    6 Posts
    14 Views
    stevedennisS
    @nathan-wilcox_0355 great to know! And if you happen to have a shareable script, by all means post the results here - we'd love to share it on the docs, to help other users see some real-world use case
  • Proposal - add Trivy support in server mode

    4
    0 Votes
    4 Posts
    13 Views
    atrippA
    It's hard to say, because we haven't created our 2024 product roadmap yet :) You can see when past versions were released if you are curious: https://inedo.com/products/roadmap
  • 0 Votes
    2 Posts
    9 Views
    gdivisG
    Hi @e-rotteveel_1850 Thanks for the bug report! We will have this fixed in v2023.14 to be released on Friday. It's logged as PG-2446, and looks like a regression from some of the internal consolidation we did for ProGet 2023. -Greg
  • Using IIS::Ensure-Site without removing bindings?

    4
    0 Votes
    4 Posts
    11 Views
    atrippA
    Hi @Justinvolved , Ah yes, getting all this modeling done sensibly is a challenge, and documenting it is a whole new pain The main issue we're facing is that you can't create a Site in IIS without a binding; the API will simply reject it and error. This means that if you use IIS::Ensure-Site to create a site, but don't specify a binding, it will error. However IIS::Ensure-Site can update a site no problem. This is why we originally created the Bindings property. However, it's a but challenging to use, and exhibits the behavior you describe: it "ensures" that list matches whatever is in the Site. Our current way of thinking is this: IIS::Ensure-Site MySite ( AppPool: MyPool, Path: C:\Websites\MySite, BindingProtocol: http, BindingHostName: app.local, BindingPort: 80 ); IIS::Ensure-SiteBinding ( Site: MySite, Protocol: https, ... ssl properties ... ); Our "new" way of thinking is that it might make sense to allow IIS::Ensure-Site to have two sets of binding properties. IIS::Ensure-Site MySite ( AppPool: MyPool, Path: C:\Websites\MySite, HttpHostName: app.local, HttpBindingPort: 80, HttpsBindingPort: 443, HttpsCertificateOrWhatever... ); This seems to align with how most people want to set up a site in IIS (i.e. two bindings). Definitely open to your feedback Cheers, Alana
  • PGVC: Blocked packages cannot be unblocked

    pgvc proget
    8
    2
    0 Votes
    8 Posts
    30 Views
    atrippA
    @sebastian thanks for confirming! I've added this as something to fix via PG-2441 and targeted it as 2013.14 (next Friday), but it's a lower-priority issue so it will may get "bumped" to the next or following depending on other issues
  • Could not create nuget feed using API

    5
    1
    0 Votes
    5 Posts
    12 Views
    S
    @atripp Thanks. We'll update our ProGet server
  • ProGet: Handling of deprecated NuGet packages

    proget
    8
    5
    0 Votes
    8 Posts
    49 Views
    atrippA
    Hi @sebastian There is no plan to add user-configurable scheduled job capabilities to ProGet, and it's unlikely we would consider that since they are really hard to support. We do have our Otter product that's designed for that However, in ProGet 2022, we considered a periodic "check" for packages in a feed against the source; the use case was "is a newer patch version available" - and if so, then an issue would be raised about using an out-of-date package. We obviously didn't implement that. But it seems we could take a similar approach and then also check for unlisting/deprecation as well. This might be something that comes up in our ProGet 2024 planning. But in either case, it still involves lots and lots of web calls to check each package against the source - so I would start with a a script and see what you find out. Thanks, Alana
  • Link between SCA Project and Package

    6
    0 Votes
    6 Posts
    30 Views
    rhessingerR
    Hi @dan-brown_0128, The only linkage between the SCA project and the NuGet package/feed (and other feed types when associated) is that the SCA project will look at all the associated NuGet packages' feeds to pull their relevant license and vulnerability data for each associated package. The then displays that information in the SCA project and creates issues if it finds problems (blocked license, blocked due to vulnerability, missing package, etc...). Thank, Rich
  • Workstation/Server with Dual Choco Feeds

    2
    0 Votes
    2 Posts
    6 Views
    atrippA
    Hi @rmusick_7875 , Unless you build your own GUI client, I don't think what you're doing is going to be possible or feasible to implement; dependencies need to be be in the same feed. I suppose you could try "Unlisting" the packages, but I don't know if the Chocolatey GUI client uses the Listed indicated to determine if a package should be listed. Cheers, Alana
  • NuGet Feed API Endpoint URL Returns 404

    network nuget api
    3
    0 Votes
    3 Posts
    9 Views
    C
    Hi @stevedennis, Thanks for the reply. It turns out my default nginx server was intercepting all http traffic and not allowing requests to get to the Proget server. I solved the issue by disabling the default server (removing it from sites-enabled) and making some config changes to the Proget nginx config file to stop the server from redirecting http traffic to https.
  • OT - Minor Bug In Job Template

    2
    1
    0 Votes
    2 Posts
    4 Views
    rhessingerR
    Hi @philippe-camelio_3885, Good catch! I created a ticket, OT-494, to track the fix. We should have this released in the next two versions of Otter (2022.12 or 2022.13). Thanks, Rich
  • NuGet Upload Difference between Enterprise and Basic Edition

    3
    2
    0 Votes
    3 Posts
    12 Views
    R
    Hi Alana, Thanks for confirming the consistent behavior between the two versions, and pointing us in the right direction. As you pointed out, the issue did stem from our CI/CD API key being overprivileged in our Enterprise edition instance. I reduced the privileges for the key, and duplicate packages are being skipped. Thanks for your assistance. Rich
  • 0 Votes
    3 Posts
    11 Views
    P
    Hi @atripp Thanks for the tips. Best regards Philippe
  • BM - Editing OSCall Operation using Visual Editor not working anymore

    2
    0 Votes
    2 Posts
    7 Views
    atrippA
    Hi @philippe-camelio_3885 , thanks for reproting this; definitely looks like a regression of some kind. We'll get it fixed ASAP via BM-3860 -- but sounds like you found a temporary work-around for now :)
Inedo Website HomeSupport HomeCode of ConductForums GuideDocumentation