~ubuntu-branches/ubuntu/precise/landscape-client/precise-updates

« back to all changes in this revision

Viewing changes to landscape/broker/amp.py

  • Committer: Package Import Robot
  • Author(s): Christopher Glass (Canonical)
  • Date: 2014-12-15 09:24:30 UTC
  • mfrom: (1.2.13)
  • Revision ID: package-import@ubuntu.com-20141215092430-z2f5btcgh00nzdal
Tags: 14.12-0ubuntu0.12.04
* New upstream version (LP: #1401523):
  - Fix regression occurring when performing Landscape-driven release
    upgrades (LP: #1389686)
  - Fix regression occurring when switching the client between different
    Landscape servers (LP: #1376134)
  - Support reporting QEMU virtualization (LP: #1374501)
  - Bump Juju integration message format (LP: #1369635, LP: #1362506)
  - Drop provisioning registration message (LP: #1344054)
  - Drop cloud registration message (LP: #1342646)
  - Fix handling broken packages (LP: #1326940)
  - Add new Swift usage message type (LP: #1320236)
  - Fix platform detection on POWER machines (LP: #1271615)
  - Fix platform detection for arm64 machines (LP: #1306824)
  - Added a mechanism to set the client's user-agent (LP: #1399139)
  - Fixed release-upgrader not asking for a seesion ID before attempting to
    send a message (LP: #1401867)

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
                for arg in args:
54
54
                    assert MethodCallArgument.check(arg)
55
55
                for k, v in kwargs.iteritems():
56
 
                    assert MethodCallArgument.check(arg)
 
56
                    assert MethodCallArgument.check(v)
57
57
                return execute(original, *args, **kwargs)
58
58
            return method
59
59
        else: