Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
simonmeggle committed Oct 21, 2022
2 parents 19484e2 + 401247c commit 6bc729c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.4.1 - 2022-10-21

### Fixed

* agent plugin: fixed bug when piggyback was set, runner crashed

## 1.4.0 - 2022-10-13

### Changed
Expand Down
4 changes: 2 additions & 2 deletions agents_plugins/robotmk.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

local_tz = datetime.utcnow().astimezone().tzinfo

ROBOTMK_VERSION = 'v1.4.0'
ROBOTMK_VERSION = 'v1.4.1'


class RMKConfig:
Expand Down Expand Up @@ -695,7 +695,7 @@ def global_dict(self):
@property
def piggybackhost(self):
pb_host = self.suite_dict.get("piggybackhost", None)
return ("piggybackhost", piggybackhost) if pb_host else None
return ("piggybackhost", pb_host) if pb_host else None

# Suite timestamp for filenames
@property
Expand Down
2 changes: 1 addition & 1 deletion bakery/v1/robotmk.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# This file is part of the Robotmk project (https://www.robotmk.org)

ROBOTMK_VERSION = 'v1.4.0'
ROBOTMK_VERSION = 'v1.4.1'

import cmk.utils.paths
import os
Expand Down
2 changes: 1 addition & 1 deletion bakery/v2/robotmk.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# This file is part of the Robotmk project (https://www.robotmk.org)

ROBOTMK_VERSION = 'v1.4.0'
ROBOTMK_VERSION = 'v1.4.1'

from typing import Iterable, TypedDict, List
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion checks/v1/robotmk
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ from collections import namedtuple
iam = "robotmk"
# DO NOT DELETE
inventory_robotmk_rules = []
ROBOTMK_VERSION = 'v1.4.0'
ROBOTMK_VERSION = 'v1.4.1'
DEFAULT_SVC_PREFIX = 'Robot Framework E2E $SUITEID$SPACE-$SPACE'
HTML_LOG_DIR = "%s/%s" % (os.environ['OMD_ROOT'], 'var/robotmk')

Expand Down
2 changes: 1 addition & 1 deletion checks/v2/robotmk.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from cmk.base.plugins.agent_based.agent_based_api.v1 import *
from cmk.utils.exceptions import MKGeneralException

ROBOTMK_VERSION = 'v1.4.0'
ROBOTMK_VERSION = 'v1.4.1'
DEFAULT_SVC_PREFIX = 'Robot Framework E2E $SUITEID$SPACE-$SPACE'
HTML_LOG_DIR = "%s/%s" % (os.environ['OMD_ROOT'], 'var/robotmk')

Expand Down

0 comments on commit 6bc729c

Please sign in to comment.