tileserver-gl-light 5.1.2 → 5.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/changelog_for_version.md +1 -1
- package/package.json +1 -1
- package/src/server.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# tileserver-gl changelog
|
|
2
2
|
|
|
3
|
+
## 5.1.3
|
|
4
|
+
* Fix SIGHUP (broken since 5.1.x) (https://github.com/maptiler/tileserver-gl/pull/1452) by @okimiko
|
|
5
|
+
|
|
3
6
|
## 5.1.2
|
|
4
7
|
* Fix broken light (invalid use of heavy dependencies) (https://github.com/maptiler/tileserver-gl/pull/1449) by @okimiko
|
|
5
8
|
|
package/changelog_for_version.md
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
* Fix
|
|
1
|
+
* Fix SIGHUP (broken since 5.1.x) (https://github.com/maptiler/tileserver-gl/pull/1452) by @okimiko
|
|
2
2
|
|
package/package.json
CHANGED
package/src/server.js
CHANGED
|
@@ -775,8 +775,8 @@ export async function server(opts) {
|
|
|
775
775
|
console.log(`Caught signal ${signal}, refreshing`);
|
|
776
776
|
console.log('Stopping server and reloading config');
|
|
777
777
|
|
|
778
|
-
running.server.shutdown(() => {
|
|
779
|
-
const restarted = start(opts);
|
|
778
|
+
running.server.shutdown(async () => {
|
|
779
|
+
const restarted = await start(opts);
|
|
780
780
|
running.server = restarted.server;
|
|
781
781
|
running.app = restarted.app;
|
|
782
782
|
});
|