File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 1.0.1+2
2+
3+ - fix: Fallback to in-memory database
4+
15## 1.0.1+1
26
37- fix: Fix expectation of trace context when running in cloud
Original file line number Diff line number Diff line change @@ -17,7 +17,12 @@ Future<QueryExecutor> localExecutor({
1717 String ? path,
1818}) async {
1919 if (path == null ) {
20- final packageConfig = await Isolate .packageConfig;
20+ Uri ? packageConfig;
21+ try {
22+ packageConfig = await Isolate .packageConfig;
23+ } on Object {
24+ // Not available in all environments.
25+ }
2126 if (packageConfig == null ) {
2227 _logger.warning (
2328 'Failed to determine package config path. '
Original file line number Diff line number Diff line change 11name : celest
22description : The Flutter cloud platform. Celest enables you to build your entire backend in Dart.
3- version : 1.0.1+1
3+ version : 1.0.1+2
44homepage : https://celest.dev
55repository : https://github.com/celest-dev/celest/tree/main/packages/celest
66
You can’t perform that action at this time.
0 commit comments