Skip to content

Commit

Permalink
Updated versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pakozm committed May 11, 2014
1 parent e91e4b4 commit 03f0b50
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion mapreduce/cnn.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ local mongo = require "mongo"
local utils = require "mapreduce.utils"

local cnn = {
_VERSION = "0.1",
_VERSION = "0.2",
_NAME = "cnn",
}

Expand Down
2 changes: 1 addition & 1 deletion mapreduce/fs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
-- module fs
local fs = {
_VERSION = "0.1",
_NAME = "fs",
_NAME = "mapreduce.fs",
}

local utils = require "mapreduce.utils"
Expand Down
2 changes: 1 addition & 1 deletion mapreduce/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ local server = require "mapreduce.server"
local utils = require "mapreduce.utils"

local mapreduce = {
_VERSION = "0.1",
_VERSION = "0.2-1",
_NAME = "mapreduce",
worker = worker,
server = server,
Expand Down
2 changes: 1 addition & 1 deletion mapreduce/job.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local job = {
_VERSION = "0.1",
_VERSION = "0.2",
_NAME = "job",
}

Expand Down
2 changes: 1 addition & 1 deletion mapreduce/server.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local server = {
_VERSION = "0.1",
_VERSION = "0.2",
_NAME = "mapreduce.server",
}

Expand Down
2 changes: 1 addition & 1 deletion mapreduce/task.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-- sets the task job for the cluster, which indicates the workers which kind of
-- work (MAP,REDUCE,...) must perform
local task = {
_VERSION = "0.1",
_VERSION = "0.2",
_NAME = "task",
}

Expand Down
2 changes: 1 addition & 1 deletion mapreduce/utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ local mongo = require "mongo"
assert(mongo._VERSION == "0.4" or tonumber(mongo._VERSION > 0.4))

local utils = {
_VERSION = "0.1",
_VERSION = "0.2",
_NAME = "mapreduce.utils",
DEFAULT_RW_TIMEOUT = 300, -- seconds
DEFAULT_SLEEP = 1, -- seconds
Expand Down
2 changes: 1 addition & 1 deletion mapreduce/worker.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local worker = {
_VERSION = "0.1",
_VERSION = "0.2",
_NAME = "mapreduce.worker",
}

Expand Down

0 comments on commit 03f0b50

Please sign in to comment.