File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1+ 0.6.1 (2023-09-13)
2+ ------------------
3+ * Feature: GridFS document storage in Mongo-backed instances is now sharded if the mongo server supports it.
4+
150.6.0 (2023-09-01)
26------------------
37* Feature: Reports are now grouped by their containing folder on the main UI.
Original file line number Diff line number Diff line change @@ -139,7 +139,10 @@ def main(web_config: WebappConfig):
139139 flask_app = create_app (web_config )
140140 flask_app = setup_app (flask_app , web_config )
141141 serializer = get_serializer_from_cls (web_config .SERIALIZER_CLS , ** web_config .SERIALIZER_CONFIG )
142- serializer .enable_sharding ()
142+ try :
143+ serializer .enable_sharding ()
144+ except AttributeError :
145+ pass
143146 start_app (web_config )
144147 logger .info ("Notebooker is now running at http://0.0.0.0:%d" , web_config .PORT )
145148 http_server = WSGIServer (("0.0.0.0" , web_config .PORT ), flask_app )
You can’t perform that action at this time.
0 commit comments