Still getting mirror list error after setting custom mirror_type to none

I tried applying the mirror_type fix to my custom repo in my custom.conf file but even after rebooting am still seeing the same error. Is there somewhere else I need to change this?
 
Code:
~]$ cat /usr/local/etc/pkg/repos/custom.conf
custom: {
        url: "http://192.168.n.n/15amd64-local-kjpservers",
        mirror_type: "none",
        enabled: yes,
}

# pkg repos
FreeBSD-ports: { 
    url             : "pkg+https://pkg.FreeBSD.org/FreeBSD:15:amd64/quarterly",
    enabled         : yes,
    priority        : 0,
    mirror_type     : "SRV",
    signature_type  : "FINGERPRINTS",
    fingerprints    : "/usr/share/keys/pkg"
  }
FreeBSD-ports-kmods: { 
    url             : "pkg+https://pkg.FreeBSD.org/FreeBSD:15:amd64/kmods_quarterly_1",
    enabled         : yes,
    priority        : 0,
    mirror_type     : "SRV",
    signature_type  : "FINGERPRINTS",
    fingerprints    : "/usr/share/keys/pkg"
  }
FreeBSD-base: { 
    url             : "pkg+https://pkg.FreeBSD.org/FreeBSD:15:amd64/base_release_1",
    enabled         : no,
    priority        : 0,
    mirror_type     : "SRV",
    signature_type  : "FINGERPRINTS",
    fingerprints    : "/usr/share/keys/pkgbase-15"
  }
custom: { 
    url             : "http://192.168.n.n/15amd64-local-kjpservers",
    enabled         : yes,
    priority        : 0,
    signature_type  : "NONE"
  }

(Local IP address hidden.)
 
Is that a Poudriere repository? I am using one from local filesystem, just tried http-way and it seems to work fine with just the url, no mirror_type defined.

Code:
$ cat /usr/local/etc/pkg/repos/Poudriere*
Poudriere: { url="file:///usr/local/poudriere/data/packages/144amd64-main" }
Poudriere2: { url: "http://0.0.0.0:3169" }
 
Back
Top