Skip to content

Commit

Permalink
endpoint: fix bug in endpoint create method which caused panic (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
svix-frank authored Jun 2, 2021
1 parent 8d7a7f8 commit d5f64af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## Version 0.6.1
* fix bug in `endpoint create` which caused a panic

## Version 0.6.0
* Change verify to use flags for non payload data instead of positional arguments

Expand Down
2 changes: 1 addition & 1 deletion cmd/endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Example Schema:

var in []byte
if len(args) > 1 {
in = []byte(args[2])
in = []byte(args[1])
} else {
var err error
in, err = utils.ReadPipe()
Expand Down

0 comments on commit d5f64af

Please sign in to comment.