Skip to content

Commit

Permalink
set github/docker/www/twitter to trickstercache (#574)
Browse files Browse the repository at this point in the history
Signed-off-by: James Ranson <[email protected]>
  • Loading branch information
jranson authored May 26, 2021
1 parent 961467c commit ec87a9a
Show file tree
Hide file tree
Showing 263 changed files with 929 additions and 950 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Should you wish to work on an issue, please claim it first by commenting on the

If you have questions about one of the issues, please comment on them and one of the maintainers will clarify it. For a quicker response, contact us on the #trickster slack channel.

For complete instructions on how to compile see: [Building From Source](https://github.com/tricksterproxy/trickster#building-from-source)
For complete instructions on how to compile see: [Building From Source](https://github.com/trickstercache/trickster#building-from-source)

For quickly compiling and testing your changes do:

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ docker:
.PHONY: docker-release
docker-release:
# linux x86 image
docker build --build-arg IMAGE_ARCH=amd64 --build-arg GOARCH=amd64 -f ./deploy/Dockerfile -t tricksterproxy/trickster:$(IMAGE_TAG) .
docker build --build-arg IMAGE_ARCH=amd64 --build-arg GOARCH=amd64 -f ./deploy/Dockerfile -t trickstercache/trickster:$(IMAGE_TAG) .
# linux arm image
docker build --build-arg IMAGE_ARCH=arm64v8 --build-arg GOARCH=arm64 -f ./deploy/Dockerfile -t tricksterproxy/trickster:arm64v8-$(IMAGE_TAG) .
docker build --build-arg IMAGE_ARCH=arm64v8 --build-arg GOARCH=arm64 -f ./deploy/Dockerfile -t trickstercache/trickster:arm64v8-$(IMAGE_TAG) .

.PHONY: style
style:
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# <img src="./docs/images/logos/trickster-logo.svg" width=90 />&nbsp;&nbsp;&nbsp;&nbsp;<img src="./docs/images/logos/trickster-text.svg" width=420 /> [![Follow on Twitter](https://img.shields.io/twitter/follow/tricksterio.svg?style=social&logo=twitter)](https://twitter.com/tricksterio)
# <img src="./docs/images/logos/trickster-logo.svg" width=90 />&nbsp;&nbsp;&nbsp;&nbsp;<img src="./docs/images/logos/trickster-text.svg" width=420 /> [![Follow on Twitter](https://img.shields.io/twitter/follow/trickstercache.svg?style=social&logo=twitter)](https://twitter.com/trickstercache)

[![License](https://img.shields.io/github/license/tricksterproxy/trickster)](/LICENSE)
[![Coverage Status](https://coveralls.io/repos/github/tricksterproxy/trickster/badge.svg)](https://coveralls.io/github/tricksterproxy/trickster)
[![Build Status](https://travis-ci.org/tricksterproxy/trickster.svg?branch=master)](https://travis-ci.org/tricksterproxy/trickster/)
[![Go Report Card](https://goreportcard.com/badge/github.com/tricksterproxy/trickster)](https://goreportcard.com/report/github.com/tricksterproxy/trickster)
[![License](https://img.shields.io/github/license/trickstercache/trickster)](/LICENSE)
[![Coverage Status](https://coveralls.io/repos/github/trickstercache/trickster/badge.svg)](https://coveralls.io/github/trickstercache/trickster)
[![Build Status](https://travis-ci.org/trickstercache/trickster.svg?branch=master)](https://travis-ci.org/trickstercache/trickster/)
[![Go Report Card](https://goreportcard.com/badge/github.com/trickstercache/trickster)](https://goreportcard.com/report/github.com/trickstercache/trickster)
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/2518/badge)](https://bestpractices.coreinfrastructure.org/en/projects/2518)
[![GoDoc](https://godoc.org/github.com/tricksterproxy/trickster?status.svg)](https://godoc.org/github.com/tricksterproxy/trickster)
[![GoDoc](https://godoc.org/github.com/trickstercache/trickster?status.svg)](https://godoc.org/github.com/trickstercache/trickster)
[![Docker Pulls](https://img.shields.io/docker/pulls/tricksterio/trickster.svg?maxAge=86400)](https://hub.docker.com/r/tricksterio/trickster)

Trickster is an HTTP reverse proxy/cache for http applications and a dashboard query accelerator for time series databases.
Expand Down Expand Up @@ -78,7 +78,7 @@ Check out our end-to-end [Docker Compose demo composition](./deploy/trickster-de

Docker images are available on Docker Hub:

$ docker run --name trickster -d -v /path/to/trickster.conf:/etc/trickster/trickster.conf -p 0.0.0.0:8480:8480 tricksterproxy/trickster
$ docker run --name trickster -d -v /path/to/trickster.conf:/etc/trickster/trickster.conf -p 0.0.0.0:8480:8480 trickstercache/trickster

See the 'deploy' Directory for more information about using or creating Trickster docker images.

Expand All @@ -98,14 +98,14 @@ Go environment with [version 1.9 or greater installed](http://golang.org/doc/ins
You can directly use the `go` tool to download and install the `trickster`
binary into your `GOPATH`:

$ go get github.com/tricksterproxy/trickster
$ go get github.com/trickstercache/trickster
$ trickster -origin-url http://prometheus.example.com:9090 -origin-type prometheus

You can also clone the repository yourself and build using `make`:

$ mkdir -p $GOPATH/src/github.com/tricksterproxy
$ cd $GOPATH/src/github.com/tricksterproxy
$ git clone https://github.com/tricksterproxy/trickster.git
$ mkdir -p $GOPATH/src/github.com/trickstercache
$ cd $GOPATH/src/github.com/trickstercache
$ git clone https://github.com/trickstercache/trickster.git
$ cd trickster
$ make build
$ ./OPATH/trickster -origin-url http://prometheus.example.com:9090 -origin-type prometheus
Expand Down
2 changes: 1 addition & 1 deletion cmd/trickster/conf/example.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# This file contains descriptions and examples for all
# Trickster configuration options. More documentation is
# available at https://github.com/tricksterproxy/trickster/docs/
# available at https://github.com/trickstercache/trickster/docs/
#
# Optional configs are commented out, required configs are uncommented
# and set to common values that let you try it out with Prometheus
Expand Down
2 changes: 1 addition & 1 deletion cmd/trickster/conf/simple.prometheus.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# This file demonstrates a basic configuration to accelerate
# Prometheus queries using Trickster. More documentation is
# available at https://github.com/tricksterproxy/trickster/docs/
# available at https://github.com/trickstercache/trickster/docs/
#
# Copyright 2018 The Trickster Authors
#
Expand Down
2 changes: 1 addition & 1 deletion cmd/trickster/conf/simple.reverseproxycache.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# This file demonstrates a basic configuration for operating an
# HTTP Reverse Proxy Cache using Trickster. More documentation is
# available at https://github.com/tricksterproxy/trickster/docs/
# available at https://github.com/trickstercache/trickster/docs/
#
# Copyright 2018 The Trickster Authors
#
Expand Down
28 changes: 14 additions & 14 deletions cmd/trickster/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,20 @@ import (
"time"

"github.com/gorilla/mux"
"github.com/tricksterproxy/trickster/pkg/cache"
"github.com/tricksterproxy/trickster/pkg/cache/memory"
"github.com/tricksterproxy/trickster/pkg/cache/registration"
"github.com/tricksterproxy/trickster/pkg/cache/types"
"github.com/tricksterproxy/trickster/pkg/config"
ro "github.com/tricksterproxy/trickster/pkg/config/reload/options"
"github.com/tricksterproxy/trickster/pkg/proxy/handlers"
th "github.com/tricksterproxy/trickster/pkg/proxy/handlers"
"github.com/tricksterproxy/trickster/pkg/routing"
"github.com/tricksterproxy/trickster/pkg/runtime"
tr "github.com/tricksterproxy/trickster/pkg/tracing/registration"
"github.com/tricksterproxy/trickster/pkg/util/log"
tl "github.com/tricksterproxy/trickster/pkg/util/log"
"github.com/tricksterproxy/trickster/pkg/util/metrics"
"github.com/trickstercache/trickster/pkg/cache"
"github.com/trickstercache/trickster/pkg/cache/memory"
"github.com/trickstercache/trickster/pkg/cache/registration"
"github.com/trickstercache/trickster/pkg/cache/types"
"github.com/trickstercache/trickster/pkg/config"
ro "github.com/trickstercache/trickster/pkg/config/reload/options"
"github.com/trickstercache/trickster/pkg/proxy/handlers"
th "github.com/trickstercache/trickster/pkg/proxy/handlers"
"github.com/trickstercache/trickster/pkg/routing"
"github.com/trickstercache/trickster/pkg/runtime"
tr "github.com/trickstercache/trickster/pkg/tracing/registration"
"github.com/trickstercache/trickster/pkg/util/log"
tl "github.com/trickstercache/trickster/pkg/util/log"
"github.com/trickstercache/trickster/pkg/util/metrics"
)

var cfgLock = &sync.Mutex{}
Expand Down
18 changes: 9 additions & 9 deletions cmd/trickster/listeners.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ import (
"net/http"
"time"

"github.com/tricksterproxy/trickster/pkg/config"
ph "github.com/tricksterproxy/trickster/pkg/proxy/handlers"
"github.com/tricksterproxy/trickster/pkg/proxy/listener"
ttls "github.com/tricksterproxy/trickster/pkg/proxy/tls"
"github.com/tricksterproxy/trickster/pkg/routing"
"github.com/tricksterproxy/trickster/pkg/tracing"
"github.com/tricksterproxy/trickster/pkg/util/log"
tl "github.com/tricksterproxy/trickster/pkg/util/log"
"github.com/tricksterproxy/trickster/pkg/util/metrics"
"github.com/trickstercache/trickster/pkg/config"
ph "github.com/trickstercache/trickster/pkg/proxy/handlers"
"github.com/trickstercache/trickster/pkg/proxy/listener"
ttls "github.com/trickstercache/trickster/pkg/proxy/tls"
"github.com/trickstercache/trickster/pkg/routing"
"github.com/trickstercache/trickster/pkg/tracing"
"github.com/trickstercache/trickster/pkg/util/log"
tl "github.com/trickstercache/trickster/pkg/util/log"
"github.com/trickstercache/trickster/pkg/util/metrics"
)

var lg = listener.NewListenerGroup()
Expand Down
2 changes: 1 addition & 1 deletion cmd/trickster/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"os"
"sync"

"github.com/tricksterproxy/trickster/pkg/runtime"
"github.com/trickstercache/trickster/pkg/runtime"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion cmd/trickster/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ func TestRunConfig(t *testing.T) {

runConfig(nil, wg, nil, nil, []string{"-version"}, nil)

runConfig(nil, wg, nil, nil, []string{"-origin-type", "rpc", "-origin-url", "http://tricksterproxy.io"}, nil)
runConfig(nil, wg, nil, nil, []string{"-origin-type", "rpc", "-origin-url", "http://trickstercache.org"}, nil)

}
6 changes: 3 additions & 3 deletions cmd/trickster/signal.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ import (
"sync"
"syscall"

"github.com/tricksterproxy/trickster/pkg/cache"
"github.com/tricksterproxy/trickster/pkg/config"
tl "github.com/tricksterproxy/trickster/pkg/util/log"
"github.com/trickstercache/trickster/pkg/cache"
"github.com/trickstercache/trickster/pkg/config"
tl "github.com/trickstercache/trickster/pkg/util/log"
)

var hups = make(chan os.Signal, 1)
Expand Down
4 changes: 2 additions & 2 deletions cmd/trickster/usage.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package main
import (
"fmt"

"github.com/tricksterproxy/trickster/pkg/runtime"
"github.com/trickstercache/trickster/pkg/runtime"
)

const usageText = `
Expand Down Expand Up @@ -65,7 +65,7 @@ repository, Charts on Helm Hub, and standalone binaries on our GitHub releases p
Thank you for using and contributing to Open Source Software!
https://github.com/tricksterproxy/trickster
https://github.com/trickstercache/trickster
`

func version() string {
Expand Down
4 changes: 2 additions & 2 deletions cmd/trickster/usage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package main

import (
"github.com/tricksterproxy/trickster/pkg/runtime"
"github.com/trickstercache/trickster/pkg/runtime"
)

// ExamplePrintVersion tests the output of the printVersion() func
Expand Down Expand Up @@ -75,6 +75,6 @@ func ExamplePrintUsage() {
//
// Thank you for using and contributing to Open Source Software!
//
// https://github.com/tricksterproxy/trickster
// https://github.com/trickstercache/trickster
//
}
6 changes: 3 additions & 3 deletions deploy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
ARG IMAGE_ARCH=amd64

FROM golang:1.14.3 as builder
COPY . /go/src/github.com/tricksterproxy/trickster
WORKDIR /go/src/github.com/tricksterproxy/trickster
COPY . /go/src/github.com/trickstercache/trickster
WORKDIR /go/src/github.com/trickstercache/trickster

ARG GOARCH=amd64
RUN GOOS=linux GOARCH=${GOARCH} CGO_ENABLED=0 make build

FROM ${IMAGE_ARCH}/alpine:3.12
LABEL maintainer "The Trickster Authors <[email protected]>"

COPY --from=builder /go/src/github.com/tricksterproxy/trickster/OPATH/trickster /usr/local/bin/trickster
COPY --from=builder /go/src/github.com/trickstercache/trickster/OPATH/trickster /usr/local/bin/trickster
COPY cmd/trickster/conf/example.conf /etc/trickster/trickster.conf
RUN chown nobody /usr/local/bin/trickster
RUN chmod +x /usr/local/bin/trickster
Expand Down
2 changes: 1 addition & 1 deletion deploy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Docker
---
```
$ docker run --name trickster -d [-v /path/to/trickster.conf:/etc/trickster/trickster.conf] -p 0.0.0.0:9090:9090 tricksterproxy/trickster:latest
$ docker run --name trickster -d [-v /path/to/trickster.conf:/etc/trickster/trickster.conf] -p 0.0.0.0:9090:9090 trickstercache/trickster:latest
```

## Kubernetes, Helm, RBAC
Expand Down
2 changes: 1 addition & 1 deletion deploy/kube/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ data:
#
# This file contains descriptions and examples for all
# Trickster configuration options. More documentation is
# available at https://github.com/tricksterproxy/trickster/docs/
# available at https://github.com/trickstercache/trickster/docs/
#
# Optional configs are commented out, required configs are uncommented
# and set to common values that let you try it out with Prometheus
Expand Down
2 changes: 1 addition & 1 deletion deploy/kube/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: trickster
image: tricksterproxy/trickster:latest
image: trickstercache/trickster:latest
imagePullPolicy: IfNotPresent
volumeMounts:
- name: cfg-volume
Expand Down
2 changes: 1 addition & 1 deletion deploy/packaging/trickster.spec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Vendor: The Trickster Authors
Packager: The Trickster Authors
Group: System Environment/Daemons
License: ASL 2.0
URL: https://github.com/tricksterproxy/trickster
URL: https://github.com/trickstercache/trickster

Prefix: /opt
BuildRoot: %{_tmppath}/%{name}
Expand Down
2 changes: 1 addition & 1 deletion deploy/systemd/trickster.service
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[Unit]
Description=Dashboard Accelerator for Prometheus and HTTP Reverse Proxy Cache
Documentation=https://github.com/tricksterproxy/trickster
Documentation=https://github.com/trickstercache/trickster
After=network.target

[Service]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"title": "Github",
"tooltip": "Trickster Github repository",
"type": "link",
"url": "https://github.com/tricksterproxy/trickster"
"url": "https://github.com/trickstercache/trickster"
},
{
"icon": "bolt",
Expand All @@ -50,7 +50,7 @@
],
"panels": [
{
"content": "<img src=\"https://github.com/tricksterproxy/trickster/raw/master/docs/images/logos/trickster-logo.svg?sanitize=true\" height=\"90\" />\n",
"content": "<img src=\"https://github.com/trickstercache/trickster/raw/master/docs/images/logos/trickster-logo.svg?sanitize=true\" height=\"90\" />\n",
"datasource": "${DS_PROMETHEUS}",
"gridPos": {
"h": 3,
Expand Down
4 changes: 2 additions & 2 deletions deploy/trickster-demo/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ services:
restart: always

mockster:
image: tricksterproxy/mockster:latest
image: trickstercache/mockster:latest
ports:
- 8482:8482
networks:
Expand Down Expand Up @@ -66,7 +66,7 @@ services:
restart: always

trickster:
image: tricksterproxy/trickster:1.1
image: trickstercache/trickster:1.1
depends_on:
- prometheus
- mockster
Expand Down
4 changes: 2 additions & 2 deletions docs/developer/origin-extensibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Trickster provides 2 required interfaces for enabling a new Origin Type: The Pro

### Proxy Client Interface

The Proxy Client Interface ([code](https://github.com/tricksterproxy/trickster/blob/next/internal/proxy/model/client.go)) is used by Trickster to manipulate HTTP requests and responses in order to accelerate the requests.
The Proxy Client Interface ([code](https://github.com/trickstercache/trickster/blob/next/internal/proxy/model/client.go)) is used by Trickster to manipulate HTTP requests and responses in order to accelerate the requests.

For your Proxy Client Implementation, you will need to know these things about the Origin:

Expand Down Expand Up @@ -68,7 +68,7 @@ The Proxy Client Interface Methods you will need to implement are broken into se

### Time Series Interface

The Time Series Interface ([code](https://github.com/tricksterproxy/trickster/blob/next/internal/timeseries/timeseries.go)) is used by Trickster to manipulate Time Series documents in order to maintain the cache and construct downstream client request bodies.
The Time Series Interface ([code](https://github.com/trickstercache/trickster/blob/next/internal/timeseries/timeseries.go)) is used by Trickster to manipulate Time Series documents in order to maintain the cache and construct downstream client request bodies.

For your Time Series Implementation, you will need to know these things about the Origin:

Expand Down
2 changes: 1 addition & 1 deletion docs/developer/spinning-new-release.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Spinning New Trickster Release

Users with push access to tricksterproxy/trickster (maintainers and owners) can spin releases.
Users with push access to trickstercache/trickster (maintainers and owners) can spin releases.

To spin a new Trickster release, clone the repo, checkout the commit ID for the release, tag it with a release in semantic version format (`vX.Y.Z`), and push the tag back to the GitHub repository.

Expand Down
2 changes: 1 addition & 1 deletion docs/developer/tracing.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Tracing support

Trickster has minimal support for OpenTelemetry. See <https://github.com/tricksterproxy/trickster/issues/36>
Trickster has minimal support for OpenTelemetry. See <https://github.com/trickstercache/trickster/issues/36>

## Config
TODO
Expand Down
6 changes: 3 additions & 3 deletions docs/new-changed-1.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

1.1 continues to improve the Trickster project, with a ton of new features, bug fixes, and optimizations. Here's the quick rundown of what's new and improved:

- Our GitHub project is relocated from `Comcast/trickster` to `tricksterproxy/trickster`
- Our GitHub project is relocated from `Comcast/trickster` to `trickstercache/trickster`
- Our Docker Hub organization name is changed from `tricksterio` to `tricksterproxy`
- Helm charts are relocated to `tricksterproxy/helm-charts` and published at <https://helm.tricksterproxy.io>
- All project references and package imports updated per the project relocation
Expand All @@ -22,13 +22,13 @@
- New Rules Engine for custom request handling and rewriting
- HTTP 2.0 Support
- systemd service file (`trickster.service`) is relocated from `./cmd/trickster/conf/` to `./deploy/systemd/`
- `rangesim` package has been rebranded as `mockster`, and moved to [its own project](https://github.com/tricksterproxy/mockster), with its own docker image using port `8482`
- `rangesim` package has been rebranded as `mockster`, and moved to [its own project](https://github.com/trickstercache/mockster), with its own docker image using port `8482`
- Fully support acceleration of HTTP POST requests to Prometheus and InfluxDB endpoints
- Updated dependencies to Go 1.14.3, Alpine 3.12, InfluxDB 1.8.0

## Installing

You can build the 1.1 binary from the `master` branch, download binaries from the Releases page, or use the `tricksterproxy/trickster:1.1` Docker image tag in containerized environments. Helm Charts version `1.5.0` is the chart release associated with Trickster v1.1.
You can build the 1.1 binary from the `master` branch, download binaries from the Releases page, or use the `trickstercache/trickster:1.1` Docker image tag in containerized environments. Helm Charts version `1.5.0` is the chart release associated with Trickster v1.1.

## Breaking Changes from 1.0

Expand Down
2 changes: 1 addition & 1 deletion docs/promsim.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# PromSim Update

We've created a new project called [Mockster](https://github.com/tricksterproxy/mockster) that incorporates all the features of PromSim, verbatim. We hope you'll check it out!
We've created a new project called [Mockster](https://github.com/trickstercache/mockster) that incorporates all the features of PromSim, verbatim. We hope you'll check it out!

The PromSim packages and libraries are removed from the main Trickster project, and we'll remove this notice with the release of Trickster v1.2.
2 changes: 1 addition & 1 deletion docs/range_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ Trickster currently does not support revalidation based on `If-Range` request he

For verification of Trickster's compatibility with Byte Range Requests (as well as Time Series data), we created a golang library and accompanying standalone application dubbed Mockster. Mockster's Byte Range library simply prints out the `Lorem ipsum ...` sample text, pared down to the requested range or multipart ranges, with a few bells and whistles that allow you to customize its response for unit testing purposes. We make extensive use of Mockster in unit testing to verify the integrity of Trickster's output after performing operations like merging disparate range parts, extracting ranges from other ranges, or from a full body, compressing adjacent ranges into a single range in the cache, etc.

It is fairly straightforward to run or import Mockster into your own applications. For examples of using it for Unit Testing, check out [/internal/proxy/engines/objectproxycache_test.go](https://github.com/tricksterproxy/trickster/blob/main/pkg/proxy/engines/objectproxycache_test.go).
It is fairly straightforward to run or import Mockster into your own applications. For examples of using it for Unit Testing, check out [/internal/proxy/engines/objectproxycache_test.go](https://github.com/trickstercache/trickster/blob/main/pkg/proxy/engines/objectproxycache_test.go).
Loading

0 comments on commit ec87a9a

Please sign in to comment.