Nikita Ofitserov

Results 14 issues of Nikita Ofitserov

Let's look on the `PolyModelType._convert` in case it is called when validating an already converted instance. Before the fix for the recursive validation, the `self.is_allowed_model(value)` check skipped constructing a new...

I'm trying to express a schema where a sub-object is allowed to contain extra (unknown) fields. The only way to skip unknown fields I can find is using `strict=False` argument...

If a `BaseException` which is not an `Exception` is thrown inside a job (for example, `KeyboardInterrupt`), the `Scheduler._wait_failed()` task fails to catch this exception after re-raising it, and this exception...

The following test demonstrates the problem: ``` python >>> from injector import * >>> class A(object): ... @inject(x=InstanceProvider(0)) ... def __init__(self, x=-1, a=-2): ... print x, a ... >>> inj...

I see the following error frequently in PyCharm IDE (without Java plugin installed), plugin version 1.8.0: ``` update failed for AnAction(com.intellij.plugins.thrift.editor.GoToThriftDefinition) with ID=com.intellij.plugins.thrift.editor.GoToThriftDefinition java.lang.NoClassDefFoundError: com/intellij/psi/PsiClass at com.intellij.plugins.thrift.editor.GoToThriftDefinition.getThriftDeclarations(GoToThriftDefinition.java:88) at com.intellij.plugins.thrift.editor.GoToThriftDefinition.update(GoToThriftDefinition.java:103) at...

I see the following exception stack trace when used with Dhall language server: ``` java.lang.NullPointerException at com.github.gtache.lsp.client.languageserver.wrapper.LanguageServerWrapperImpl.$anonfun$connect$1(LanguageServerWrapperImpl.scala:203) at java.base/java.util.concurrent.CompletableFuture.uniRunNow(CompletableFuture.java:815) at java.base/java.util.concurrent.CompletableFuture.uniRunStage(CompletableFuture.java:799) at java.base/java.util.concurrent.CompletableFuture.thenRun(CompletableFuture.java:2121) at com.github.gtache.lsp.client.languageserver.wrapper.LanguageServerWrapperImpl.connect(LanguageServerWrapperImpl.scala:190) at com.github.gtache.lsp.PluginMain$.$anonfun$editorOpened$2(PluginMain.scala:145) at com.github.gtache.lsp.PluginMain$.$anonfun$editorOpened$2$adapted(PluginMain.scala:141) at...

bug

As I understand, this plugin currently sends `workspace/didChangeWatchedFiles` notifications for all workspace files regardless of any file watching patterns registered by the server. Worst case, the server receives totally unexpected...

bug
Implemented

This PR improves the ExtensionArray writing support from #232 to handle other array types (including PyArrow ones). Before it, such fields were often silently and unexpectedly casted to `object` dtype...

Should the format allow for no geometry columns in a file? I think that it should, because it is occasionally useful: for example, a tool converting a schema-less (GeoJSON-like) input...

### Is there an existing issue for this? - [X] I have searched the existing issues ### What version of `workers-rs` are you using? 0.2.0 ### What version of `wrangler`...