File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ library
17
17
hs-source-dirs : src
18
18
exposed-modules : Hasql.Notifications
19
19
build-depends : base >= 4.7 && < 5
20
- , bytestring >= 0.10.8.2
20
+ , bytestring >= 0.10.8.2 && < 0.12
21
21
, text >= 2 && < 2.2
22
- , hasql-pool >= 0.4 && < 1.1
22
+ , hasql-pool >= 1.2 && < 1.3
23
23
, bytestring >= 0.10
24
24
, postgresql-libpq >= 0.9 && < 1.0
25
- , hasql >= 0.19
25
+ , hasql >= 0.19 && < 1.8
26
26
27
27
default-language : Haskell2010
28
28
ghc-options : -Wall
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ notify ::
81
81
PgIdentifier ->
82
82
-- | Payload to be sent with the notification
83
83
Text ->
84
- IO (Either S. QueryError () )
84
+ IO (Either S. SessionError () )
85
85
notify con channel mesg =
86
86
run (sql $ T. encodeUtf8 (" NOTIFY " <> fromPgIdentifier channel <> " , '" <> mesg <> " '" )) con
87
87
You can’t perform that action at this time.
0 commit comments