Inedo Community Forums Forums
    • Recent
    • Tags
    • Popular
    • Login
    1. Home
    2. atripp
    3. Posts

    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!

    atrippA Offline
    • Profile
    • Following 0
    • Followers 3
    • Topics 1
    • Posts 1,947
    • Groups 2

    Posts

    Recent Best Controversial
    • RE: Polling Inedo Agents

      Hello; the agents don't currently support this, though this is something that we've considered for a long time -- some of our key customers have requested this as well.

      However, we've developed some interesting technical alternatives that make the pull-based agents largely moot (at least according to the folks who requested it originally); for example Romp and universal packages allow the client to self-install, or at least have an in-house BuildMaster or Otter instance that can manage installations based on packages.

      posted in Support
      atrippA
      atripp
    • RE: Error attempting to set GitHub Build status

      Hello; this was fixed in GitHub-1.4.3 extension, but as a work-around you can just set BaseUrl in Admin > Advanced Settings

      posted in Support
      atrippA
      atripp
    • RE: Proget filesystem access

      HTTP should be about same speed as FTP; you'll most certainly need to use chunked uploads.

      But Asset directories don't support drop folders, and we don't have a reindexing function for asset directories. So unfortunately there's no supported way to handle this.

      You might be able to "hack" something by going to the database and filesystem directly, but we obviously can't recommend it.

      posted in Support
      atrippA
      atripp
    • RE: Proget docker delete manifest api request fails

      I think so; that's a Postgres error message.

      We deprecated Postgres a long while back, and new features aren't tested against Postgres database code.

      posted in Support
      atrippA
      atripp
    • RE: PyPI package not shown in search results accessible via url

      Interesting; I know it's not ideal, but it works, and it may only be a slight inconvenience at best, since not many search for packages from the UI, I think.

      https://github.com/Inedo/inedo-docs/blob/master/ProGet/feeds/pypi.md

      If anyone finds more issues with this, please let us know and we can consider investing in a proper fix.

      posted in Support
      atrippA
      atripp
    • RE: Error attempting to Tag a Docker Image

      What user principle are you running the Inedo Agent under?

      The default is LOCAL SYSTEM.

      posted in Support
      atrippA
      atripp
    • RE: PyPI package not shown in search results accessible via url

      Unfortunately we didn't totally understand that detail either when implementing the feed, either... so unfortunately it's not trivial to fix.

      We'd like to gauge the impact of not changing it; aside from this search odditiy, was there any other problems? Are packages not installing?

      posted in Support
      atrippA
      atripp
    • RE: PyPI package not shown in search results accessible via url

      I'm not very familiar with PyPi packages, but I know there are some oddities with - and _, and that they are sometimes supposed to be treated the same, and sometimes not. We don't totally understand all the rules, to be honest (even after reading PEP503 specifications).

      In this case, the package is actually websocket_client, not websocket-client.

      See: https://pypi.org/project/websocket_client/

      When you search for websocket_client in ProGet, it shows up, as expected.

      posted in Support
      atrippA
      atripp
    • RE: Maven Feed can't find maven-metadata.xml

      Hello; I think this may have already been addressed in PG-1477, which was shipped in ProGet 5.2.0.

      Can you try upgrading to latest version and try again?

      posted in Support
      atrippA
      atripp
    • RE: ProGet return unlisted packages in visual studio

      Hi;

      It's hard to say why this is happening, if you don't see it in the UI, you souldn't see it in Visual Studio.

      it could be related to cached packages in visual studio. The best way to diagnose this would be attach Fiddler or Wireshark, so that Visual STudio is going through that, and then monitor the exact queries that Visual STudio is sending to ProGet, and find if anyone is actually returning those packages. If so, then please share the details and we can try to investigate.

      Otherwise clear all of your local NuGet caches.

      Best,

      Alana

      posted in Support
      atrippA
      atripp
    • RE: No xml:base attribute in service node of nuget endpoint response

      I can't say why it's like that, probably because NuGet.org didn't have it a long time ago?

      One important note; changing this could break a lot of the tools we do support and integrate with --- which include older versions of NuGet client that NuGet.org no longer supports.

      Can you bring this up with Dependabot team? It should be a totally trivial fix on their end, and it's not necessary at all for them to use it.

      posted in Support
      atrippA
      atripp
    • RE: Unzip not working

      Hello;

      What are you trying to do?

      This definitely won't work for several reasons.

      1. Ensure-File is an "Ensure" operation and will detect configuration drift and can optionally create the file if it doesn't exist; but in this case, it would be a 0-byte file named test.zip, which isn't a valid zip

      2. Extract-ZipFile is a "Execute-only" operation, which means it will run only within a block (e.g. { ... } ) if drift was detected (i.e. the file didn't exist in the operation before); but if that was the case, it would fail because it's not a valid zip file

      You probably want to use an Orchestration plan for this.

      Please read through this eBook to get feeling for how configuration and Orchestration Plans: https://inedo.com/support/resources/ebooks/windows-first-iac-cca

      posted in Support
      atrippA
      atripp
    • RE: Downloading NuGet packages parallely causes serious interference

      Hi there;

      ProGet is quite optimized as a far as software goes (check out ProGet Case Studies to see the scale that enterprises use it at), and a lot of our users have switched from competitive tools for massive performance gains that our tools have. But you need to put it on proper hardware.

      Keep in mind that NuGet tools were designed to operate against NuGet.org, which is run on a massive server farm that sends primarily static content. You are making 1000's of requests, and each request to ProGet is comparatively expensive, because it proxies those requests to NuGet.org (assuming you have a connector loaded), makes database connections, it checks permissions, vulnerabilities, etc.

      Each request to the server can result in several subsequent network requests... and it sounds like your ProGet server is a Win10 desktop... there's just no way it's going to keep up with developers hammering it with more powerful workstations.

      Check out ProGet Free to ProGet Enterprise to see the performance recommendations we have, and other reasons organizations upgrade.

      posted in Support
      atrippA
      atripp
    • RE: Support for R and CRAN

      Hello; unfortunately we hit a few snags in getting the environment and PoC code running (a bit more variety in R/CRAN packages), and then we ran out of budgeted time :(

      But it's still definitely on our roadmap and we're going to take another stab at it in NOvember.

      posted in Support
      atrippA
      atripp
    • RE: Debian feed not working

      Hi @gravufo sorry on the delay; this fell thru the cracks on prioritization, but it's been merged just now and will be shipped into ProGet 5.2.15, shipping next Friday.

      posted in Support
      atrippA
      atripp
    • RE: Unzip not working

      Thanks!

      So to be clear, is this in a "configuration plan" or an "orchestration plan"? Can you give some more context as to how you're trying to use this (i.e. why do you want to unzip)? Can you share the full plan?

      posted in Support
      atrippA
      atripp
    • RE: Service Health API call returning 404

      Hello; I've updated the documentation to clarify this, but it's available starting in ProGet 5.2.9. So, you'll need to upgrade to enable it :)

      posted in Support
      atrippA
      atripp
    • RE: Unzip not working

      hi; please share your OtterScript and we might be able to get a better idea :)

      posted in Support
      atrippA
      atripp
    • RE: Agentless PowerShell OtterServer

      Hello; when you go to add a server (Servers page > Add) to Otter, just select "WSMan / Powershell" as the agent type, and then you'll be able to enter the details for a server that has PowerShell remoting enabled.

      Does that help?

      posted in Support
      atrippA
      atripp
    • RE: Size Limit ProGet - 10 Go ?

      Hi; that message is coming from the operating system and ProGet does not have any sort of limit (we have customers with terrabytes of packages); perhaps you've configured it to a different drive, or something. I'd check there :)

      posted in Support
      atrippA
      atripp
    • 1 / 1