Skip to content

Commit

Permalink
Fix links of github tree references (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
dtaniwaki authored and VaibhavPage committed Nov 13, 2018
1 parent 5146040 commit 32a1eac
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions docs/custom-gateway.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ type GatewayConfig struct {
gatewayConfig.DispatchEvent(event []byte, src string) error
```

For detailed implementation, check out [Core Gateways](https://github.com/argoproj/argo-events/tree/eventing/gateways/core)
For detailed implementation, check out [Core Gateways](https://github.com/argoproj/argo-events/tree/master/gateways/core)

## gRPC gateway
A gRPC gateway has 3 components,
Expand All @@ -101,7 +101,7 @@ RunGateway(GatewayConfig) returns (stream Event)
The gateway processor client opens a new connection for each gateway configuration and starts listening to
events on a stream.

For detailed implementation, check out [Calendar gRPC gateway](https://github.com/argoproj/argo-events/tree/eventing/gateways/grpc/calendar)
For detailed implementation, check out [Calendar gRPC gateway](https://github.com/argoproj/argo-events/tree/master/gateways/grpc/calendar)

* To run gRPC gateway, you need to provide `rpcPort` in gateway spec.

Expand Down Expand Up @@ -136,7 +136,7 @@ List of environment variables available to user code
| GATEWAY_HTTP_CONFIG_EVENT | REST endpoint to send events to |


For detailed implementation, check out [Calendar HTTP gateway](https://github.com/argoproj/argo-events/tree/eventing/gateways/rest/calendar)
For detailed implementation, check out [Calendar HTTP gateway](https://github.com/argoproj/argo-events/tree/master/gateways/rest/calendar)

## Framework independent
The fourth option is you provide gateway implementation from scratch: watch the configuration
Expand All @@ -154,4 +154,4 @@ List of environment variables available to user code
| GATEWAY_NAME | Gateway name |

### Gateway Examples
* Example gateway definitions are available at [here](https://github.com/argoproj/argo-events/tree/eventing/examples/gateways)
* Example gateway definitions are available at [here](https://github.com/argoproj/argo-events/tree/master/examples/gateways)
2 changes: 1 addition & 1 deletion docs/gateway-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,4 +210,4 @@ Stream gateways contain a generic specification for messages received on a queue
```

### Examples
Explore [Gateway Examples](https://github.com/argoproj/argo-events/tree/eventing/examples/gateways)
Explore [Gateway Examples](https://github.com/argoproj/argo-events/tree/master/examples/gateways)
4 changes: 2 additions & 2 deletions docs/sensor-guide.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Sensor Guide

Sensors define a set of dependencies (inputs) and actions (outputs). The sensor's actions will only be triggered after it's dependencies have been resolved.
[Sensor examples](https://github.com/argoproj/argo-events/tree/eventing/examples/sensors)
[Sensor examples](https://github.com/argoproj/argo-events/tree/master/examples/sensors)


### Dependencies
Expand Down Expand Up @@ -83,4 +83,4 @@ filters:
- path: bucket
type: string
value: argo-workflow-input
```
```

0 comments on commit 32a1eac

Please sign in to comment.