Skip to content

Commit 624d4ee

Browse files
committed
Upd ver
1 parent 159efa7 commit 624d4ee

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

lib/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Version string. Examples:
22
# '3.0.0'
33
# '3.0.0-alpha9'
4-
__version__ = '3.0.0-alpha3'
4+
__version__ = '3.0.0-alpha4'

main.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,13 @@
77

88

99
if __name__ == '__main__':
10-
loop = asyncio.new_event_loop()
11-
start_server(loop)
12-
asyncio.ensure_future(cleanup_subscriptions_loop(), loop=loop)
13-
1410
checks = {
1511
'ipflow': check_ipflow,
1612
}
17-
1813
probe = Probe("ipflow", version, checks)
1914

15+
loop = asyncio.new_event_loop()
16+
start_server(loop)
17+
asyncio.ensure_future(cleanup_subscriptions_loop(), loop=loop)
18+
2019
probe.start(loop=loop)

0 commit comments

Comments
 (0)