Revert "Move catch into then-onRejected to fix resolving then anyways."
This reverts commit 2356040572922cfbaa7384a43eb2b7a2ae17f809.
This commit is contained in:
		
							parent
							
								
									2356040572
								
							
						
					
					
						commit
						e18de63d7c
					
				@ -40,7 +40,12 @@ function checkWriteApi(influxDb, options){
 | 
				
			|||||||
        const writeApi = influxDb.getWriteApi(options.org, options.bucket);     // Get WriteAPI
 | 
					        const writeApi = influxDb.getWriteApi(options.org, options.bucket);     // Get WriteAPI
 | 
				
			||||||
        writeApi.writePoint(new Point("test").tag("ConnectionTest", true).intField("value", 0).timestamp(0))    // Write dummy-point
 | 
					        writeApi.writePoint(new Point("test").tag("ConnectionTest", true).intField("value", 0).timestamp(0))    // Write dummy-point
 | 
				
			||||||
        writeApi.close()
 | 
					        writeApi.close()
 | 
				
			||||||
            .then((res) => {
 | 
					            .catch((err) => {
 | 
				
			||||||
 | 
					                logger.error("Could not get writeApi:");
 | 
				
			||||||
 | 
					                logger.error(`Error [${err.code}]:`, err.message);
 | 
				
			||||||
 | 
					                if(err.code == "not found") logger.error("No write-permission?");
 | 
				
			||||||
 | 
					                reject();
 | 
				
			||||||
 | 
					            }).then((res) => {
 | 
				
			||||||
                logger.debug("Writing ok");
 | 
					                logger.debug("Writing ok");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                // Delete the connection-text-point
 | 
					                // Delete the connection-text-point
 | 
				
			||||||
@ -59,11 +64,6 @@ function checkWriteApi(influxDb, options){
 | 
				
			|||||||
                        reject();
 | 
					                        reject();
 | 
				
			||||||
                    })
 | 
					                    })
 | 
				
			||||||
                    .then(resolve())
 | 
					                    .then(resolve())
 | 
				
			||||||
            },
 | 
					 | 
				
			||||||
            (err) => {
 | 
					 | 
				
			||||||
                logger.error("Could not get writeApi:");
 | 
					 | 
				
			||||||
                logger.error(`Error [${err.code}]:`, err.message);
 | 
					 | 
				
			||||||
                reject();
 | 
					 | 
				
			||||||
            });
 | 
					            });
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user