Navigation

    Inedo Community Forums

    Forums

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. caspacokku_2900
    C
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    caspacokku_2900

    @caspacokku_2900

    0
    Reputation
    8
    Posts
    1
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    caspacokku_2900 Follow

    Best posts made by caspacokku_2900

    This user hasn't posted anything yet.

    Latest posts made by caspacokku_2900

    • RE: An error duing cargo build

      Hello.
      It seems like I've found all the solutions to all of my problems. Thanks

      Error #1:
      warning: spurious network error (10 tries remaining): [28] Timeout was reached (Operation too slow. Less than 10 bytes/sec transferred the last 30 seconds)
      Solution #1:
      Thanks to you. I increased Cargo's metadata caching from 100 to 2000 for 1 hr. This may have solved this error.

      Error #2:
      The given key 'version' was not present in the dictionary
      Solution #2:
      This might aswell be a series of random errors sprouting because of a (as you said) response was not fully returned or maybe because we don't let enough requests through and they get queued, sometimes some packets don't arrive on time (even with increased timeout) or get malformed and therefore create wrong requests. This solution is aligned with 502 Bad Gateway aswell as the Exceptions and unexpected value. I increased the Concurrent request limit to 100 instead of 70. This way the cargo build did not wait downloading. We have alot more users so this got increased to 300.

      Error #3:
      ProGet returning 502 Bad Gateway
      Solution #3:
      Too many requests, ProGet web hanged. I turned on the Concurrent request limit.

      Error #4:
      Exception while reading from stream and Internal Npgsql bug: unexpected value 0 of enum BackendMessageCode
      Solution #4:
      This has disappeared completely after I increased the Concurrent request limit. I increased the Concurrent request limit to 100 instead of 70. This way the cargo build did not wait downloading. We have alot more users so this got increased to 300.

      posted in Support
      C
      caspacokku_2900
    • RE: An error duing cargo build

      @rhessinger Sorry, I do not follow currently. Our postgres errors isn't a priority for us. I think you were the one to mention some corruption which we will have to deal with later. The "The given key 'version' was not present in the dictionary." error which I displayed here is a problem because we cannot have the Connector Crate Caching enabled, thus building very slowly. If we start the cache, it stops working after a while and doesn't work again until we turn off the cache.

      We have also Concurrent request limit set to 70

      Step to follow:

      1. Create a feed called public-cargo to crates.io
      2. Set Dependecy Resolution -> "always use this feed when the registry is unspecified"
      3. Enable Connector Crate Caching
      4. Enable Metadata Caching 100 queries for 30 min
      5. Use Cargo.toml as displayed below:
      [package]
      name = "rusttest"
      version = "0.0.0"
      edition = "2021"
      
      [dependencies]
      anyhow = "1"
      assert_matches = "1.5"
      async-trait = "0.1"
      bincode = { version = "2", features = ["serde"] }
      bindgen = "0.72"
      blake3 = "1.5"
      bollard = "0.20"
      bytes = "1"
      cidr = "0.3"
      clap = "4.5"
      criterion = "0.8"
      csv = "1.3"
      cursive = { version = "0.21.1", default-features = false, features = ["crossterm-backend"] }
      data-url = "0.3.1"
      futures = "0.3.31"
      futures-util = "0.3.31"
      http = "1.2.0"
      http-body-util = "0.1.2"
      http-serde = "2"
      humantime = "2.1"
      hyper = "1"
      hyper-rustls = "0.27.5"
      hyper-util = "0.1"
      itertools = "0.14"
      jsonschema = { version = "0.40", default-features = false }
      libc = "0.2.169"
      memmap2 = "0.9.5"
      mockall = "0.14"
      nix = "0.31"
      opcua = { version = "0.12", features = ["client", "console-logging", "vendored-openssl"] }
      pgp = "0.18"
      proptest = "1.4"
      prost = "0.14"
      prost-types = "0.14"
      rand = "0.9"
      regex-lite = "0.1.6"
      rumqttc = "0.25"
      russh = "0.54"
      russh-sftp = "2.1"
      rustls = { version = "0.23", default-features = true }
      rustls-pemfile = { version = "2.2.0" }
      serde = "1"
      serde_bytes = "0.11.15"
      serde_json = "1"
      serde_with = "3.9"
      serial_test = "3.1"
      stopwatch2 = "2"
      strum = "0.27"
      tar = "0.4"
      tempfile = "3.10"
      thiserror = "2"
      time = "0.3"
      tokio = "1.47"
      tokio-rustls = { version = "0.26", default-features = false }
      tokio-stream = "0.1.17"
      tokio-util = "0.7.13"
      tonic = "0.14"
      tonic-prost = "0.14"
      tonic-prost-build = "0.14"
      tracing = "0.1.41"
      tracing-journald = "0.3"
      tracing-subscriber = "0.3"
      wasmtime = "41"
      
      1. Edit your .cargo/config.toml:
      [source.crates-io]
      replace-with = "proget"
      
      [registries.proget]
      index = "sparse+https://proget.example.com/cargo/public-cargo/"
      # Seems to be needed even though we allow anonymous access
      token = ""
      
      [registry]
      default = "proget"
      global-credential-providers = ["cargo:token"]
      
      [net]
      # network retries
      retry = 10
      # tells cargo to use git when fetching from the registry instead of the cargo default libgit2
      git-fetch-with-cli = true
      
      posted in Support
      C
      caspacokku_2900
    • RE: An error duing cargo build

      I have put Concurrent request limit to = 70 because this has solved a bottleneck performance issue btw.

      [package]
      name = "nytest"
      version = "0.1.0"
      edition = "2024"
      
      [dependencies]
      anyhow = "*"
      bollard = "0.19"
      blake3 = "^1.5"
      clap =  { version = "=4.5.32", features = ["wrap_help"] }
      macaddr = { version = "1.0", features = ["serde_std"] }
      optional_struct = { version = "0.5" }
      regex-lite = { version = "0.1.6" }
      tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros", "net", "sync", "io-util", "time", "fs"] }
      serde = { version = "*", features = ["derive"] }
      serde_json = "1.0"
      tracing = "0.1"
      tracing-subscriber = { version = "0.3", features = ["env-filter"] }
      tracing-journald = { version = "0.3"}
      nix = "*"
      scopeguard = "1.2"
      aws-lc-sys = "0.35"
      

      Make sure to enable Connector Crate Caching. If the cache is empty make sure to fill it up by doing a cargo build then clean the cache on the machine

      cargo build
      rm -f ../.cargo/registry/cache/*
      rm -f ../.cargo/registry/index/*
      cargo clean
      
      posted in Support
      C
      caspacokku_2900
    • RE: An error duing cargo build

      @atripp Hi.

      So my team has clarified a bit. We get these Exception while reading from stream and Internal Npgsql bug: unexpected value 0 of enum BackendMessageCode when the Connector Crate Caching is disabled, because if it's ON, we get this error, so to workaround this issue they disabled the caching:

          Updating `proget` index
      warning: spurious network error (10 tries remaining): [28] Timeout was reached (Operation too slow. Less than 10 bytes/sec transferred the last 30 seconds)
      warning: spurious network error (10 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (9 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (8 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (7 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (6 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (5 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (4 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (3 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (2 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (1 try remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      error: failed to get `aws-lc-sys` as a dependency of package `aws-lc-rs v1.14.1`
          ... which satisfies dependency `aws-lc-rs = "^1.14"` (locked to 1.14.1) of package `rustls v0.23.35`
          ... which satisfies dependency `rustls = "^0.23.27"` (locked to 0.23.35) of package `tokio-rustls v0.26.4`
          ... which satisfies dependency `tokio-rustls = "^0.26.0"` (locked to 0.26.4) of package `rumqttc v0.25.0`
          ... which satisfies dependency `rumqttc = "^0.25"` (locked to 0.25.0) of package `mycrate v0.0.0 (/mycrate)`
      Caused by:
        failed to query replaced source registry `crates-io`
      Caused by:
        download of aw/s-/aws-lc-sys failed
      Caused by:
        failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
        body:
        {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      
      An error occurred processing a GET request to http://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys: The given key 'version' was not present in the dictionary.
      
      System.Collections.Generic.KeyNotFoundException: The given key 'version' was not present in the dictionary.
         at Inedo.ProGet.Feeds.Cargo.CargoMetadata.<.ctor>g__getDependency|3_4(KeyValuePair`2 dependency) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Feeds\Cargo\CargoMetadata.cs:line 152
         at System.Linq.Enumerable.SelectManySingleSelectorIterator`2.MoveNext()
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoIndexHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoIndexHandler.cs:line 106
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoIndexHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoIndexHandler.cs:line 89
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoFeedHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoFeedHandler.cs:line 107
         at Inedo.ProGet.WebApplication.FeedEndpoints.CanonicalFeedHandler`1.Inedo.Web.IHttpAsyncHandler.ProcessRequestAsync(AhHttpContext context) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\CanonicalFeedHandler.cs:line 85
      
      ::Web Error on 16/01/2026 13:02:14::
      

      So the team has disabled the Connector Crate Caching entirely. But if the Caching is ON, we need to clear the cache for the aws-lc-sys package to download. We are not entirely sure if these other Exception while reading from stream and Internal Npgsql bug: unexpected value 0 of enum BackendMessageCode are appearing only during when the Connector Crate Caching is disabled or not.

      So if we could get this error fixed, so that our Connector Crate Caching is ON again, we could probably see if that's related to the Exceptions and Internal Npgsql bug

      posted in Support
      C
      caspacokku_2900
    • RE: An error duing cargo build

      Oh. that's concerning. We do have more connectors like npm, docker and python and all those are fine. It's only cargo that we have had problems with, that generate tons of errors.

      Our system is baseline debian 13. Using docker to run ProGet.

      Connection String: 
      Web UI Version: 2025.18 (Build 13)
      Database Schema Version: 25.0.18.13
      SQL Server Version: PostgreSQL 17.7 (Debian 17.7-3.pgdg12+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 12.2.0-14+deb12u1) 12.2.0, 64-bit
      db_owner: True
      Database Name: proget
      Database Collation: C (UTF8)
      Database Recovery Model: Default (1)
      Database Read Committed Snapshot: True
      Database Auto Update Stats: True
      
      posted in Support
      C
      caspacokku_2900
    • RE: An error duing cargo build

      We found more. We are using version 2025.18 (build 13). This all happened together:
      1st:

      An error occurred processing a GET request to http://proget.example.com/cargo/public-cargo/crates/cfg-if/1.0.4/download: Internal Npgsql bug: unexpected value 0 of enum BackendMessageCode. Please file a bug.
      
      System.InvalidOperationException: Internal Npgsql bug: unexpected value 0 of enum BackendMessageCode. Please file a bug.
         at Npgsql.ThrowHelper.ThrowInvalidOperationException(String message)
         at Npgsql.Internal.NpgsqlConnector.ParseServerMessage(NpgsqlReadBuffer buf, BackendMessageCode code, Int32 len, Boolean isPrependedMessage, Boolean handleCallbacks)
         at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage)
         at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(Int16 token)
         at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage)
         at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(Int16 token)
         at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)
         at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)
         at Npgsql.NpgsqlDataReader.NextResult()
         at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)
         at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)
         at Npgsql.NpgsqlCommand.ExecuteNonQuery(Boolean async, CancellationToken cancellationToken)
         at Inedo.ProGet.Data.PostgresDatabaseContext.CreateConnection() in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Data\PostgresDatabaseContext.cs:line 71
         at Inedo.Data.DatabaseContext.ExecuteInternal(String storedProcName, GenericDbParameter[] parameters, DatabaseCommandReturnType returnType)
         at Inedo.Data.DatabaseContext.ExecuteNonQuery(String storedProcName, GenericDbParameter[] parameters)
         at Inedo.ProGet.Data.DB.Context.PackageVersionIds_GetOrCreatePackageVersionId(Nullable`1 PackageName_Id, String Package_Version, String Qualifier_Text, Nullable`1 CreateId_Indicator, Nullable`1 PackageVersion_Id) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\obj\Release\net8.0\linux-x64\InedoLib.Analyzers\InedoLib.Analyzers.DatabaseContextGenerator\DB.g.cs:line 3769
         at Inedo.ProGet.Policies.ComplianceMan.AnalyzePackageInternalAsync(IPackageFeed feed, IPackageMetadata package, Boolean alwaysReanalyze, Func`2 getLocalLatestPatchVersion, ILogSink log, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Policies\ComplianceMan.cs:line 62
         at Inedo.ProGet.Policies.ComplianceMan.GetDownloadBlockReasonAsync(IPackageFeed feed, IPackageMetadata package, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Policies\ComplianceMan.cs:line 31
         at Inedo.ProGet.Feeds.PackageFeed`5.DownloadPackageAsync(TPackage package, IPackageDownloadContext context, OpenPackageOptions options, PackageInstallContext installContext, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Feeds\PackageFeed.PackageGet.cs:line 249
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoIndexHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoIndexHandler.cs:line 53
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoFeedHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoFeedHandler.cs:line 107
         at Inedo.ProGet.WebApplication.FeedEndpoints.CanonicalFeedHandler`1.Inedo.Web.IHttpAsyncHandler.ProcessRequestAsync(AhHttpContext context) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\CanonicalFeedHandler.cs:line 85
      
      ::Web Error on 26/01/2026 10:13:22::
      

      2nd:

      An error occurred processing a GET request to http://proget.example.com/cargo/public-cargo/crates/cfg-if/1.0.4/download: Internal Npgsql bug: unexpected value 0 of enum BackendMessageCode. Please file a bug.
      
      System.InvalidOperationException: Internal Npgsql bug: unexpected value 0 of enum BackendMessageCode. Please file a bug.
         at Npgsql.ThrowHelper.ThrowInvalidOperationException(String message)
         at Npgsql.Internal.NpgsqlConnector.ParseServerMessage(NpgsqlReadBuffer buf, BackendMessageCode code, Int32 len, Boolean isPrependedMessage, Boolean handleCallbacks)
         at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage)
         at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(Int16 token)
         at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage)
         at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(Int16 token)
         at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)
         at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)
         at Npgsql.NpgsqlDataReader.NextResult()
         at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)
         at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)
         at Npgsql.NpgsqlCommand.ExecuteNonQuery(Boolean async, CancellationToken cancellationToken)
         at Inedo.ProGet.Data.PostgresDatabaseContext.CreateConnection() in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Data\PostgresDatabaseContext.cs:line 71
         at Inedo.Data.DatabaseContext.ExecuteInternal(String storedProcName, GenericDbParameter[] parameters, DatabaseCommandReturnType returnType)
         at Inedo.Data.DatabaseContext.ExecuteNonQuery(String storedProcName, GenericDbParameter[] parameters)
         at Inedo.ProGet.Data.DB.Context.PackageVersionIds_GetOrCreatePackageVersionId(Nullable`1 PackageName_Id, String Package_Version, String Qualifier_Text, Nullable`1 CreateId_Indicator, Nullable`1 PackageVersion_Id) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\obj\Release\net8.0\linux-x64\InedoLib.Analyzers\InedoLib.Analyzers.DatabaseContextGenerator\DB.g.cs:line 3769
         at Inedo.ProGet.Policies.ComplianceMan.AnalyzePackageInternalAsync(IPackageFeed feed, IPackageMetadata package, Boolean alwaysReanalyze, Func`2 getLocalLatestPatchVersion, ILogSink log, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Policies\ComplianceMan.cs:line 62
         at Inedo.ProGet.Policies.ComplianceMan.GetDownloadBlockReasonAsync(IPackageFeed feed, IPackageMetadata package, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Policies\ComplianceMan.cs:line 31
         at Inedo.ProGet.Feeds.PackageFeed`5.DownloadPackageAsync(TPackage package, IPackageDownloadContext context, OpenPackageOptions options, PackageInstallContext installContext, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Feeds\PackageFeed.PackageGet.cs:line 249
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoIndexHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoIndexHandler.cs:line 53
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoFeedHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoFeedHandler.cs:line 107
         at Inedo.ProGet.WebApplication.FeedEndpoints.CanonicalFeedHandler`1.Inedo.Web.IHttpAsyncHandler.ProcessRequestAsync(AhHttpContext context) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\CanonicalFeedHandler.cs:line 85
      
      ::Web Error on 26/01/2026 10:13:22::
      

      3rd:

      An error occurred processing a GET request to http://proget.example.com/cargo/public-cargo/crates/chrono/0.4.42/download: Exception while reading from stream
      
      Npgsql.NpgsqlException (0x80004005): Exception while reading from stream
       ---> System.TimeoutException: Timeout during reading attempt
         at Npgsql.Internal.NpgsqlReadBuffer.<Ensure>g__EnsureLong|55_0(NpgsqlReadBuffer buffer, Int32 count, Boolean async, Boolean readingNotifications)
         at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token)
         at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage)
         at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(Int16 token)
         at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)
         at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)
         at Npgsql.NpgsqlDataReader.NextResult()
         at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)
         at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)
         at Inedo.ProGet.Data.PostgresDatabaseContext.PostgresBatchCommand.ExecuteReader() in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Data\PostgresDatabaseContext.cs:line 309
         at Inedo.Data.DatabaseContext.ExecuteInternal(String storedProcName, GenericDbParameter[] parameters, DatabaseCommandReturnType returnType)
         at Inedo.ProGet.Data.DB.Context.Licenses_GetAllLicenseData() in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\obj\Release\net8.0\linux-x64\InedoLib.Analyzers\InedoLib.Analyzers.DatabaseContextGenerator\DB.g.cs:line 3311
         at Inedo.ProGet.Licenses.LicenseMan.LicLookups..ctor() in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Licenses\LicenseMan.cs:line 291
         at Inedo.ProGet.Licenses.LicenseMan.LicLookups.Create() in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Licenses\LicenseMan.cs:line 327
         at Inedo.LazyCached`1.GetValue()
         at Inedo.ProGet.Licenses.LicenseMan.FindLicenseFromPurl(PackageVersionId pUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Licenses\LicenseMan.cs:line 60
         at Inedo.ProGet.Licenses.LicenseMan.FindLicensesAsync(PackageVersionId purl, PackageLicenseDeclaration licenseDeclaration, GetFileWithinPackageHandler getFileHandler, CancellationToken cancellationToken)+MoveNext() in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Licenses\LicenseMan.cs:line 94
         at Inedo.ProGet.Licenses.LicenseMan.FindLicensesAsync(PackageVersionId purl, PackageLicenseDeclaration licenseDeclaration, GetFileWithinPackageHandler getFileHandler, CancellationToken cancellationToken)+System.Threading.Tasks.Sources.IValueTaskSource<System.Boolean>.GetResult()
         at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) in /_/Ix.NET/Source/System.Linq.Async/System/Linq/Operators/ToList.cs:line 36
         at System.Linq.AsyncEnumerable.<ToListAsync>g__Core|424_0[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken)
         at Inedo.ProGet.Policies.ComplianceMan.AnalyzePackageInternalAsync(IPackageFeed feed, IPackageMetadata package, Boolean alwaysReanalyze, Func`2 getLocalLatestPatchVersion, ILogSink log, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Policies\ComplianceMan.cs:line 96
         at Inedo.ProGet.Policies.ComplianceMan.GetDownloadBlockReasonAsync(IPackageFeed feed, IPackageMetadata package, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Policies\ComplianceMan.cs:line 31
         at Inedo.ProGet.Feeds.PackageFeed`5.DownloadPackageAsync(TPackage package, IPackageDownloadContext context, OpenPackageOptions options, PackageInstallContext installContext, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Feeds\PackageFeed.PackageGet.cs:line 249
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoIndexHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoIndexHandler.cs:line 53
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoFeedHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoFeedHandler.cs:line 107
         at Inedo.ProGet.WebApplication.FeedEndpoints.CanonicalFeedHandler`1.Inedo.Web.IHttpAsyncHandler.ProcessRequestAsync(AhHttpContext context) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\CanonicalFeedHandler.cs:line 85
      
      ::Web Error on 26/01/2026 10:13:44::
      

      4th:

      An error occurred processing a GET request to http://proget.example.com/cargo/public-cargo/crates/ipnet/2.11.0/download: Internal Npgsql bug: unexpected value 0 of enum BackendMessageCode. Please file a bug.
      
      System.InvalidOperationException: Internal Npgsql bug: unexpected value 0 of enum BackendMessageCode. Please file a bug.
         at Npgsql.ThrowHelper.ThrowInvalidOperationException(String message)
         at Npgsql.Internal.NpgsqlConnector.ParseServerMessage(NpgsqlReadBuffer buf, BackendMessageCode code, Int32 len, Boolean isPrependedMessage, Boolean handleCallbacks)
         at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage)
         at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(Int16 token)
         at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage)
         at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(Int16 token)
         at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)
         at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)
         at Npgsql.NpgsqlDataReader.NextResult()
         at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)
         at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)
         at Npgsql.NpgsqlCommand.ExecuteNonQuery(Boolean async, CancellationToken cancellationToken)
         at Inedo.ProGet.Data.PostgresDatabaseContext.CreateConnection() in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Data\PostgresDatabaseContext.cs:line 71
         at Inedo.Data.DatabaseContext.ExecuteInternal(String storedProcName, GenericDbParameter[] parameters, DatabaseCommandReturnType returnType)
         at Inedo.Data.DatabaseContext.ExecuteNonQuery(String storedProcName, GenericDbParameter[] parameters)
         at Inedo.ProGet.Data.DB.Context.PackageNameIds_GetOrCreatePackageNameId(String PackageType_Name, String PackageGroup_Name, String Package_Name, Nullable`1 CreateId_Indicator, Nullable`1 PackageName_Id) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\obj\Release\net8.0\linux-x64\InedoLib.Analyzers\InedoLib.Analyzers.DatabaseContextGenerator\DB.g.cs:line 3663
         at Inedo.ProGet.PackageNameId.EnsureDatabaseId(Context db) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\PackageNameId.cs:line 74
         at Inedo.ProGet.Policies.ComplianceMan.AnalyzePackageInternalAsync(IPackageFeed feed, IPackageMetadata package, Boolean alwaysReanalyze, Func`2 getLocalLatestPatchVersion, ILogSink log, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Policies\ComplianceMan.cs:line 62
         at Inedo.ProGet.Policies.ComplianceMan.GetDownloadBlockReasonAsync(IPackageFeed feed, IPackageMetadata package, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Policies\ComplianceMan.cs:line 31
         at Inedo.ProGet.Feeds.PackageFeed`5.DownloadPackageAsync(TPackage package, IPackageDownloadContext context, OpenPackageOptions options, PackageInstallContext installContext, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Feeds\PackageFeed.PackageGet.cs:line 249
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoIndexHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoIndexHandler.cs:line 53
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoFeedHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoFeedHandler.cs:line 107
         at Inedo.ProGet.WebApplication.FeedEndpoints.CanonicalFeedHandler`1.Inedo.Web.IHttpAsyncHandler.ProcessRequestAsync(AhHttpContext context) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\CanonicalFeedHandler.cs:line 85
      
      ::Web Error on 26/01/2026 10:13:53::
      

      5th:

      An error occurred processing a GET request to http://proget.example.com/cargo/public-cargo/crates/scopeguard/1.2.0/download: Internal Npgsql bug: unexpected value 0 of enum BackendMessageCode. Please file a bug.
      
      System.InvalidOperationException: Internal Npgsql bug: unexpected value 0 of enum BackendMessageCode. Please file a bug.
         at Npgsql.ThrowHelper.ThrowInvalidOperationException(String message)
         at Npgsql.Internal.NpgsqlConnector.ParseServerMessage(NpgsqlReadBuffer buf, BackendMessageCode code, Int32 len, Boolean isPrependedMessage, Boolean handleCallbacks)
         at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage)
         at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(Int16 token)
         at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage)
         at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(Int16 token)
         at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)
         at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)
         at Npgsql.NpgsqlDataReader.NextResult()
         at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)
         at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)
         at Npgsql.NpgsqlCommand.ExecuteNonQuery(Boolean async, CancellationToken cancellationToken)
         at Inedo.ProGet.Data.PostgresDatabaseContext.CreateConnection() in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Data\PostgresDatabaseContext.cs:line 71
         at Inedo.Data.DatabaseContext.ExecuteInternal(String storedProcName, GenericDbParameter[] parameters, DatabaseCommandReturnType returnType)
         at Inedo.Data.StrongDataReader.Read[TRow](Func`1 getReader, Boolean disposeReader)+MoveNext()
         at System.Linq.Enumerable.TryGetFirst[TSource](IEnumerable`1 source, Boolean& found)
         at Inedo.ProGet.WebApplication.FeedEndpoints.CanonicalFeedHandler`1.GetFeedRequestArguments(AhHttpContext context) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\CanonicalFeedHandler.cs:line 45
         at Inedo.ProGet.WebApplication.FeedEndpoints.CanonicalFeedHandler`1.Inedo.Web.IHttpAsyncHandler.ProcessRequestAsync(AhHttpContext context)
      
      ::Web Error on 26/01/2026 10:13:53::
      

      6th:

      An error occurred processing a GET request to http://proget.example.com/cargo/public-cargo/crates/rusttype/0.9.3/download: Exception while reading from stream
      
      Npgsql.NpgsqlException (0x80004005): Exception while reading from stream
       ---> System.TimeoutException: Timeout during reading attempt
         at Npgsql.Internal.NpgsqlReadBuffer.<Ensure>g__EnsureLong|55_0(NpgsqlReadBuffer buffer, Int32 count, Boolean async, Boolean readingNotifications)
         at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token)
         at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage)
         at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(Int16 token)
         at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage)
         at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(Int16 token)
         at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)
         at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)
         at Npgsql.NpgsqlDataReader.NextResult()
         at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)
         at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)
         at Npgsql.NpgsqlCommand.ExecuteNonQuery(Boolean async, CancellationToken cancellationToken)
         at Inedo.ProGet.Data.PostgresDatabaseContext.CreateConnection() in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Data\PostgresDatabaseContext.cs:line 71
         at Inedo.Data.DatabaseContext.ExecuteInternal(String storedProcName, GenericDbParameter[] parameters, DatabaseCommandReturnType returnType)
         at Inedo.ProGet.Data.DB.Context.PgvdVulnerabilities_GetVulnerabilitiesForPackage(Nullable`1 PackageName_Id) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\obj\Release\net8.0\linux-x64\InedoLib.Analyzers\InedoLib.Analyzers.DatabaseContextGenerator\DB.g.cs:line 3947
         at Inedo.ProGet.Vulnerabilities.VulnerabilityMan.GetVulnerabilitiesForPackageName(PackageNameId packageNameId) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Vulnerabilities\VulnerabilityMan.cs:line 158
         at Inedo.ProGet.Vulnerabilities.VulnerabilityMan.GetVulnerabilitiesForPackageVersion(PackageVersionId packageVersionId) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Vulnerabilities\VulnerabilityMan.cs:line 167
         at Inedo.ProGet.Policies.ComplianceMan.AnalyzePackageInternalAsync(IPackageFeed feed, IPackageMetadata package, Boolean alwaysReanalyze, Func`2 getLocalLatestPatchVersion, ILogSink log, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Policies\ComplianceMan.cs:line 110
         at Inedo.ProGet.Policies.ComplianceMan.GetDownloadBlockReasonAsync(IPackageFeed feed, IPackageMetadata package, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Policies\ComplianceMan.cs:line 31
         at Inedo.ProGet.Feeds.PackageFeed`5.DownloadPackageAsync(TPackage package, IPackageDownloadContext context, OpenPackageOptions options, PackageInstallContext installContext, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Feeds\PackageFeed.PackageGet.cs:line 249
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoIndexHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoIndexHandler.cs:line 53
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoFeedHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoFeedHandler.cs:line 107
         at Inedo.ProGet.WebApplication.FeedEndpoints.CanonicalFeedHandler`1.Inedo.Web.IHttpAsyncHandler.ProcessRequestAsync(AhHttpContext context) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\CanonicalFeedHandler.cs:line 85
      
      ::Web Error on 26/01/2026 10:14:25::
      
      posted in Support
      C
      caspacokku_2900
    • RE: An error duing cargo build

      This is another error:

          Updating `proget` index
      warning: spurious network error (10 tries remaining): [28] Timeout was reached (Operation too slow. Less than 10 bytes/sec transferred the last 30 seconds)
      warning: spurious network error (10 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (9 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (8 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (7 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (6 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (5 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (4 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (3 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (2 tries remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      warning: spurious network error (1 try remaining): failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
      body:
      {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
      error: failed to get `aws-lc-sys` as a dependency of package `aws-lc-rs v1.14.1`
          ... which satisfies dependency `aws-lc-rs = "^1.14"` (locked to 1.14.1) of package `rustls v0.23.35`
          ... which satisfies dependency `rustls = "^0.23.27"` (locked to 0.23.35) of package `tokio-rustls v0.26.4`
          ... which satisfies dependency `tokio-rustls = "^0.26.0"` (locked to 0.26.4) of package `rumqttc v0.25.0`
          ... which satisfies dependency `rumqttc = "^0.25"` (locked to 0.25.0) of package `mycrate v0.0.0 (/mycrate)`
      Caused by:
        failed to query replaced source registry `crates-io`
      Caused by:
        download of aw/s-/aws-lc-sys failed
      Caused by:
        failed to get successful HTTP response from `https://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys` (172.16.1.3), got 500
        body:
        {"errors":[{"detail":"The given key \u0027version\u0027 was not present in the dictionary.\r\nSystem.Collections.Generic.KeyNotFoundException: The given key \u0027version\u0027 was not present in the dictionary.\n   at Inedo.ProGet.Feeds.Cargo.CargoMetadata.\u003C.ctor\u003Eg__getDependency|3_4(KeyValuePair\u00602 dependency) in C:\\Users\\builds\\AppData\\Local\\Temp\\InedoAgent\\BuildMaster\\192.168.44.60\\Temp\\_E627894\\Src\\src\\ProGet\\Feeds\\Cargo\\CargoMetadata.cs:line 152\n   at System.Linq.Enumer…
       
      
      An error occurred processing a GET request to http://proget.example.com/cargo/public-cargo/aw/s-/aws-lc-sys: The given key 'version' was not present in the dictionary.
      
      System.Collections.Generic.KeyNotFoundException: The given key 'version' was not present in the dictionary.
         at Inedo.ProGet.Feeds.Cargo.CargoMetadata.<.ctor>g__getDependency|3_4(KeyValuePair`2 dependency) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Feeds\Cargo\CargoMetadata.cs:line 152
         at System.Linq.Enumerable.SelectManySingleSelectorIterator`2.MoveNext()
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoIndexHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoIndexHandler.cs:line 106
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoIndexHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoIndexHandler.cs:line 89
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoFeedHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoFeedHandler.cs:line 107
         at Inedo.ProGet.WebApplication.FeedEndpoints.CanonicalFeedHandler`1.Inedo.Web.IHttpAsyncHandler.ProcessRequestAsync(AhHttpContext context) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\CanonicalFeedHandler.cs:line 85
      
      ::Web Error on 16/01/2026 13:02:14::
      
      posted in Support
      C
      caspacokku_2900
    • An error duing cargo build
      An error occurred processing a GET request to http://proget.example.com/cargo/public-cargo/crates/fragile/2.0.1/download: Exception while reading from stream
      
      Npgsql.NpgsqlException (0x80004005): Exception while reading from stream
       ---> System.TimeoutException: Timeout during reading attempt
         at Npgsql.Internal.NpgsqlReadBuffer.<Ensure>g__EnsureLong|55_0(NpgsqlReadBuffer buffer, Int32 count, Boolean async, Boolean readingNotifications)
         at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token)
         at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage)
         at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(Int16 token)
         at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)
         at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)
         at Npgsql.NpgsqlDataReader.NextResult()
         at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)
         at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)
         at Inedo.ProGet.Data.PostgresDatabaseContext.PostgresBatchCommand.ExecuteReader() in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Data\PostgresDatabaseContext.cs:line 309
         at Inedo.Data.DatabaseContext.ExecuteInternal(String storedProcName, GenericDbParameter[] parameters, DatabaseCommandReturnType returnType)
         at Inedo.ProGet.Data.DB.Context.PgvdVulnerabilities_GetVulnerabilitiesForPackage(Nullable`1 PackageName_Id) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\obj\Release\net8.0\linux-x64\InedoLib.Analyzers\InedoLib.Analyzers.DatabaseContextGenerator\DB.g.cs:line 3947
         at Inedo.ProGet.Vulnerabilities.VulnerabilityMan.GetVulnerabilitiesForPackageName(PackageNameId packageNameId) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Vulnerabilities\VulnerabilityMan.cs:line 158
         at Inedo.ProGet.Vulnerabilities.VulnerabilityMan.GetVulnerabilitiesForPackageVersion(PackageVersionId packageVersionId) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Vulnerabilities\VulnerabilityMan.cs:line 167
         at Inedo.ProGet.Policies.ComplianceMan.AnalyzePackageInternalAsync(IPackageFeed feed, IPackageMetadata package, Boolean alwaysReanalyze, Func`2 getLocalLatestPatchVersion, ILogSink log, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Policies\ComplianceMan.cs:line 110
         at Inedo.ProGet.Policies.ComplianceMan.GetDownloadBlockReasonAsync(IPackageFeed feed, IPackageMetadata package, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Policies\ComplianceMan.cs:line 31
         at Inedo.ProGet.Feeds.PackageFeed`5.DownloadPackageAsync(TPackage package, IPackageDownloadContext context, OpenPackageOptions options, PackageInstallContext installContext, CancellationToken cancellationToken) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\Feeds\PackageFeed.PackageGet.cs:line 249
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoIndexHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoIndexHandler.cs:line 53
         at Inedo.ProGet.WebApplication.FeedEndpoints.Cargo.CargoFeedHandler.ProcessRequestAsync(AhHttpContext context, WebApiContext apiContext, CargoFeed feed, String relativeUrl) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\Cargo\CargoFeedHandler.cs:line 107
         at Inedo.ProGet.WebApplication.FeedEndpoints.CanonicalFeedHandler`1.Inedo.Web.IHttpAsyncHandler.ProcessRequestAsync(AhHttpContext context) in C:\Users\builds\AppData\Local\Temp\InedoAgent\BuildMaster\192.168.44.60\Temp\_E627894\Src\src\ProGet\WebApplication\FeedEndpoints\CanonicalFeedHandler.cs:line 85
      
      ::Web Error on 22/01/2026 08:14:07::
      
      posted in Support
      C
      caspacokku_2900