HADOOP-6680. hadoop-cloud push command invokes proxy creation. Contributed by Andrew Klochkov.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@931226 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7b1ac5ac13
commit
4c062c79c3
|
@ -309,6 +309,9 @@ Trunk (unreleased changes)
|
|||
HADOOP-6640. FileSystem.get() does RPC retries within a static
|
||||
synchronized block. (hairong)
|
||||
|
||||
HADOOP-6680. hadoop-cloud push command invokes proxy creation.
|
||||
(Andrew Klochkov via tomwhite)
|
||||
|
||||
Release 0.21.0 - Unreleased
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -374,7 +374,7 @@ def main():
|
|||
elif command == 'push':
|
||||
(opt, args, service) = parse_options_and_config(command, SSH_OPTIONS,
|
||||
("FILE",))
|
||||
service.proxy(opt.get('ssh_options'), args[1])
|
||||
service.push(opt.get('ssh_options'), args[1])
|
||||
|
||||
elif command == 'exec':
|
||||
(opt, args, service) = parse_options_and_config(command, SSH_OPTIONS,
|
||||
|
|
Loading…
Reference in New Issue