Skip to content

Commit cd328ed

Browse files
author
Madison Steiner
committed
Update URLs
1 parent a463410 commit cd328ed

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ Deis (pronounced DAY-iss) Workflow is an open source Platform as a Service (PaaS
99

1010
![Deis Graphic](https://getdeis.blob.core.windows.net/get-deis/deis-graphic-small.png)
1111

12-
For more information about the Deis Workflow, please visit the main project page at https://github.com/deis/workflow.
12+
For more information about the Deis Workflow, please visit the main project page at https://github.com/deisthree/workflow.
1313

1414
We welcome your input! If you have feedback, please [submit an issue][issues]. If you'd like to participate in development, please read the "Development" section below and [submit a pull request][prs].
1515

1616
## Description
1717
A system logger for use in the [Deis Workflow](https://deis.com/workflow/) open source PaaS.
1818

19-
This Docker image is based on [quay.io/deis/base](https://github.com/deis/docker-base) image. You can see what version we are currently using in the [Dockerfile](rootfs/Dockerfile)
19+
This Docker image is based on [quay.io/deis/base](https://github.com/deisthree/docker-base) image. You can see what version we are currently using in the [Dockerfile](rootfs/Dockerfile)
2020

2121
The new v2 logger implementation has seen a simplification from the last rewrite. While it still uses much of that code it no longer depends on `etcd`. Instead, we will use kubernetes service discovery to determine where logger is running.
2222

@@ -100,6 +100,6 @@ DEV_REGISTRY=myhost:5000 make push
100100
└──────────┘
101101
```
102102

103-
[issues]: https://github.com/deis/logger/issues
104-
[prs]: https://github.com/deis/logger/pulls
105-
[v2.18]: https://github.com/deis/workflow/releases/tag/v2.18.0
103+
[issues]: https://github.com/deisthree/logger/issues
104+
[prs]: https://github.com/deisthree/logger/pulls
105+
[v2.18]: https://github.com/deisthree/workflow/releases/tag/v2.18.0

charts/logger/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: logger
2-
home: https://github.com/deis/logger
2+
home: https://github.com/deisthree/logger
33
version: <Will be populated by the ci before publishing the chart>
44
description: In-memory log buffer used by Deis Workflow.
55
maintainers:

weblog/server_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func newTestStorageAdapter(t *testing.T) storage.Adapter {
3333
}
3434

3535
func TestServerStart(t *testing.T) {
36-
t.Skip("skipping because of https://github.com/deis/logger/issues/120")
36+
t.Skip("skipping because of https://github.com/deisthree/logger/issues/120")
3737
storageAdapter := newTestStorageAdapter(t)
3838
storageAdapter.Start()
3939
defer storageAdapter.Stop()
@@ -64,7 +64,7 @@ func TestServerStart(t *testing.T) {
6464
}
6565

6666
func TestServerClose(t *testing.T) {
67-
t.Skip("skipping because of https://github.com/deis/logger/issues/120")
67+
t.Skip("skipping because of https://github.com/deisthree/logger/issues/120")
6868
storageAdapter := newTestStorageAdapter(t)
6969
storageAdapter.Start()
7070
defer storageAdapter.Stop()
@@ -85,7 +85,7 @@ func TestServerClose(t *testing.T) {
8585
}
8686

8787
func TestServerURL(t *testing.T) {
88-
t.Skip("skipping because of https://github.com/deis/logger/issues/120")
88+
t.Skip("skipping because of https://github.com/deisthree/logger/issues/120")
8989
storageAdapter := newTestStorageAdapter(t)
9090
storageAdapter.Start()
9191
defer storageAdapter.Stop()

0 commit comments

Comments
 (0)