-
Notifications
You must be signed in to change notification settings - Fork 0
/
history.txt
49 lines (41 loc) · 1.08 KB
/
history.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
v2.1
- Total clean using Python
v2.0
- upgrade to lua 5.3
v1.5 (or 1.4.1)
- fix bug with --absolute-time
- support for max_queue time (support for this feature in controller >=1.4)
v1.4
- document the changes here
v1.3
- support for quite/verbose mode
v1.2
- support new features in splay controller 1.1 (job scheduling)
v1.1:
- ??
v0.4
- new CLI with POSIX style
- methods:
- splay_submit_job
- splay_kill_job
- splay_list_hosts
- splay_get_logs
- splay_list_jobs
- splay_list_available_splayds
v0.3
- still no authentication
- methods:
- submit_job
- kill_job
- list_hosts
- get_local_log
- add_splayd
v0.2
- methods that mimic the controller commands are created as empty functions
v0.1
- basic server-client that handle three models of RPC calls:
- command1, which does not require answer
- command2, which requires answer
- command3, which requires answer and is handled by other server, thus using the server as proxy
- command2 and command3 are the same from the perspective of the client
- multitasking (every request is a different coroutine) exists from the beginning