diff mbox

[Branch,~linaro-validation/lava-dispatcher/trunk] Rev 336: Suppress warnings about timestamps being in the future

Message ID 20120627222613.17660.61600.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

Andy Doan June 27, 2012, 10:26 p.m. UTC
Merge authors:
  Paul Larson (pwlars)
Related merge proposals:
  https://code.launchpad.net/~pwlars/lava-dispatcher/supress-timestamp-warnings/+merge/112452
  proposed by: Paul Larson (pwlars)
  review: Approve - Andy Doan (doanac)
------------------------------------------------------------
revno: 336 [merge]
committer: Andy Doan <andy.doan@linaro.org>
branch nick: lava-dispatcher
timestamp: Wed 2012-06-27 17:25:32 -0500
message:
  Suppress warnings about timestamps being in the future
modified:
  lava_dispatcher/client/master.py


--
lp:lava-dispatcher
https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk

You are subscribed to branch lp:lava-dispatcher.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'lava_dispatcher/client/master.py'
--- lava_dispatcher/client/master.py	2012-06-21 22:28:48 +0000
+++ lava_dispatcher/client/master.py	2012-06-27 21:54:27 +0000
@@ -83,7 +83,7 @@ 
         try:
             session.run(
                 'wget --no-proxy --connect-timeout=30 %s -O- %s |'
-                'tar --numeric-owner -C %s -x%sf -'
+                'tar --warning=no-timestamp --numeric-owner -C %s -x%sf -'
                 % (WGET_DEBUGGING_OPTIONS, tarball_url, dest, decompression_char),
                 timeout=timeout)
         except (OperationFailed, pexpect.TIMEOUT):