We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0ac672 commit 18905dbCopy full SHA for 18905db
plugins/arcgis/service/src/ObservationProcessor.ts
@@ -165,6 +165,12 @@ export class ObservationProcessor {
165
private async updateConfig(): Promise<ArcGISPluginConfig> {
166
const config = await this.safeGetConfig();
167
168
+ if (!config.enabled) {
169
+ this._console.info('ArcGIS plugin is disabled, stopping processor');
170
+ this.stop();
171
+ return config;
172
+ }
173
+
174
// Include configured eventform definitions while detecting changes in config
175
const eventIds = config.featureServices
176
.flatMap(service => service.layers)
0 commit comments