Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

Commit

Permalink
Update github.com/temporalio/ui-server (#40)
Browse files Browse the repository at this point in the history
* Update github.com/temporalio/ui-server

* Implement new ConfigProvider interface
  • Loading branch information
jlegrone committed Feb 26, 2022
1 parent 86a3b8e commit 4c73c85
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 61 deletions.
2 changes: 1 addition & 1 deletion cmd/temporalite/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ func buildCLI() *cli.App {
temporalite.WithUpstreamOptions(
temporal.InterruptOn(temporal.InterruptCh()),
),
temporalite.WithUI(uiserver.NewServer(uiserveroptions.WithConfig(&uiOpts))),
temporalite.WithUI(uiserver.NewServer(uiserveroptions.WithConfigProvider(&uiOpts))),
}
if c.Bool(ephemeralFlag) {
opts = append(opts, temporalite.WithPersistenceDisabled())
Expand Down
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.17
require (
github.com/google/go-licenses v0.0.0-20210816172045-3099c18c36e1
github.com/google/licenseclassifier v0.0.0-20210722185704-3043a050f148
github.com/temporalio/ui-server v0.1.1-0.20211223210854-4484839e0398
github.com/temporalio/ui-server v0.2.1-0.20220226010605-9804b4397392
github.com/urfave/cli/v2 v2.3.0
go.temporal.io/sdk v1.13.1
go.temporal.io/server v1.15.0
Expand All @@ -29,7 +29,6 @@ require (
github.com/coreos/go-oidc/v3 v3.0.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
github.com/emirpasic/gods v1.12.0 // indirect
github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect
Expand All @@ -40,6 +39,7 @@ require (
github.com/gogo/googleapis v1.4.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/gogo/status v1.1.0 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang-jwt/jwt/v4 v4.2.0 // indirect
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
Expand All @@ -63,8 +63,8 @@ require (
github.com/josharian/intern v1.0.0 // indirect
github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd // indirect
github.com/labstack/echo-contrib v0.9.0 // indirect
github.com/labstack/echo/v4 v4.2.1 // indirect
github.com/labstack/gommon v0.3.0 // indirect
github.com/labstack/echo/v4 v4.6.3 // indirect
github.com/labstack/gommon v0.3.1 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
Expand Down

0 comments on commit 4c73c85

Please sign in to comment.