Skip to content

Commit

Permalink
Dummy commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jbygdell committed Nov 27, 2024
1 parent 14428db commit 5576184
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions sda/cmd/sync/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ var (
archive, syncDestination storage.Backend
)

// add comment

func main() {
forever := make(chan bool)
conf, err = config.NewConfig("sync")
Expand Down
2 changes: 1 addition & 1 deletion sda/cmd/syncapi/syncapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ The default routing keys for sending ingestion, accession and mapping messages c
- `warn` (or `warning`)
- `error`
- `fatal`
- `panic`
- `panic`
2 changes: 1 addition & 1 deletion sda/internal/userauth/userauth.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func (u *ValidateFromToken) Authenticate(r *http.Request) (jwt.Token, error) {
// Function for reading the ega key in []byte
func (u *ValidateFromToken) ReadJwtPubKeyPath(jwtpubkeypath string) error {
err := filepath.Walk(jwtpubkeypath,
func(path string, info os.FileInfo, err error) error {
func(_ string, info os.FileInfo, err error) error {
if err != nil {
return err
}
Expand Down

0 comments on commit 5576184

Please sign in to comment.