Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

bump v1.0.0; update CI dependencies #7

Merged
merged 3 commits into from
Sep 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
language: go
go:
- 1.4
- 1.5
- 1.6
- 1.10.x
- 1.11.x
install:
- go get github.com/bmizerany/assert
- go get github.com/bitly/go-simplejson
Expand Down
4 changes: 2 additions & 2 deletions runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ func (r *Runner) Run() error {
if *stage == "" {
Status(fmt.Sprintf("error dialing remote logger %s", err))
} else {
log.Printf("failed connecting to remote logger", err)
log.Printf("failed connecting to remote logger %s", err)
}
} else {
hostname, _ := os.Hostname()
Expand Down Expand Up @@ -211,7 +211,7 @@ func (r *Runner) Run() error {
return errors.New("missing --submit-job")
}

log.Printf("submitting map reduce job")
log.Print("submitting map reduce job")

r.setTempPath()
if err := hdfs.FsCmd("-mkdir", "-p", r.tmpPath); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
// as a Runner that will submit jobs and put the steps together.
package gomrjob

const VERSION = "0.2-alpha"
const VERSION = "1.0.0"