Skip to content

Commit

Permalink
New version 1.17.55
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Nov 6, 2019
1 parent 843a18b commit 638acee
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -59,7 +59,7 @@ def read_file(path):
netius.common.ensure_setup()
setuptools.setup(
name = "netius",
version = "1.17.54",
version = "1.17.55",
author = "Hive Solutions Lda.",
author_email = "development@hive.pt",
description = "Netius System",
Expand Down
7 changes: 6 additions & 1 deletion src/netius/base/common.py
Expand Up @@ -66,7 +66,7 @@
identification of both the clients and the services this
value may be prefixed or suffixed """

VERSION = "1.17.54"
VERSION = "1.17.55"
""" The version value that identifies the version of the
current infra-structure, all of the services and clients
may share this value """
Expand Down Expand Up @@ -549,6 +549,11 @@ def delay(
verify = False,
safe = False
):
# in case the legacy module is no longer defined (probably
# at exit execution) then returns immediately as it's not
# possible to proceed with this execution
if not legacy: return

# in case the safe flag is set and the thread trying to add
# delayed elements is not the main the proper (safe) method
# is used meaning a safe execution is targeted
Expand Down

0 comments on commit 638acee

Please sign in to comment.