aboutsummaryrefslogtreecommitdiff
path: root/lib/gateway/sharder.mli
diff options
context:
space:
mode:
authorAdelyn Breedlove <[email protected]>2019-02-12 19:49:33 +0000
committerAdelyn Breedlove <[email protected]>2019-02-12 19:49:33 +0000
commit9588c99cf6eb4cb46aeeb7c0ee5623c037e9301e (patch)
treeb5ff6275e4053971d4f0d524cf39bd1310af4e67 /lib/gateway/sharder.mli
parentRandom useless command in the test bot (diff)
parentFix opam dependencies and revert changes (diff)
downloaddisml-9588c99cf6eb4cb46aeeb7c0ee5623c037e9301e.tar.xz
disml-9588c99cf6eb4cb46aeeb7c0ee5623c037e9301e.zip
Merge branch 'fix_build' into 'master'
Fix opam dependencies and revert changes See merge request Mishio595/disml!18
Diffstat (limited to 'lib/gateway/sharder.mli')
-rw-r--r--lib/gateway/sharder.mli8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/gateway/sharder.mli b/lib/gateway/sharder.mli
index a5f18e6..8ee288b 100644
--- a/lib/gateway/sharder.mli
+++ b/lib/gateway/sharder.mli
@@ -48,7 +48,7 @@ module Shard : sig
(** Set the status of the shard. *)
val set_status :
- status:Yojson.Safe.t ->
+ status:Yojson.Safe.json ->
shard ->
shard Deferred.t
@@ -78,13 +78,13 @@ end
(** Calls {!Shard.set_status} for each shard registered with the sharder. *)
val set_status :
- status:Yojson.Safe.t ->
+ status:Yojson.Safe.json ->
t ->
Shard.shard list Deferred.t
-(** Like {!set_status} but takes a function with a {{!Shard.shard}shard} as its parameter and {{!Yojson.Safe.t}json} for its return. *)
+(** Like {!set_status} but takes a function with a {{!Shard.shard}shard} as its parameter and {{!Yojson.Safe.json}json} for its return. *)
val set_status_with :
- f:(Shard.shard -> Yojson.Safe.t) ->
+ f:(Shard.shard -> Yojson.Safe.json) ->
t ->
Shard.shard list Deferred.t