Skip to content

Commit

Permalink
Merge pull request OSC#763 from OSC/fix-e2e-tests
Browse files Browse the repository at this point in the history
removing trailing . from mod_ood_proxy
  • Loading branch information
ericfranz authored Dec 22, 2020
2 parents 49e627c + 0bf84ae commit 890a240
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod_ood_proxy/lib/ood/user_map.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function map(r, user_map_match, user_map_cmd, remote_user)
if user_map_match ~= nil then
sys_user = string.match(remote_user, user_map_match)
-- run user_map_cmd and read in stdout
elseif user_map_cmd ~= nil. then
elseif user_map_cmd ~= nil then
local handle = io.popen(user_map_cmd .. " '" .. r:escape(remote_user) .. "'")
sys_user = handle:read()
handle:close()
Expand Down

0 comments on commit 890a240

Please sign in to comment.