We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 159efa7 commit 624d4eeCopy full SHA for 624d4ee
lib/version.py
@@ -1,4 +1,4 @@
1
# Version string. Examples:
2
# '3.0.0'
3
# '3.0.0-alpha9'
4
-__version__ = '3.0.0-alpha3'
+__version__ = '3.0.0-alpha4'
main.py
@@ -7,14 +7,13 @@
7
8
9
if __name__ == '__main__':
10
- loop = asyncio.new_event_loop()
11
- start_server(loop)
12
- asyncio.ensure_future(cleanup_subscriptions_loop(), loop=loop)
13
-
14
checks = {
15
'ipflow': check_ipflow,
16
}
17
18
probe = Probe("ipflow", version, checks)
19
+ loop = asyncio.new_event_loop()
+ start_server(loop)
+ asyncio.ensure_future(cleanup_subscriptions_loop(), loop=loop)
+
20
probe.start(loop=loop)
0 commit comments