Fedor Tyurin
Fedor Tyurin
In order to reproduce the bug create 2 files. Main file: <html><body><iframe src="iframe.html" style="width: 900px; height: 600px;"> <p>Your browser does not support iframes.</p></iframe></body></html> Content of iframe.html: <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>...
Can I make so that formatter won't break line after last argument in function signatures (in long lines)? If possible how would I define this in hxformat.json? My current hxformat.json...
Would it possible to do so that when `@async` is used with a function, its type is change, so if `@await` is not used when calling the function type checking...
My code: ``` @async private function myAsyncFuncReturningVoid(): Void { // do something // line 244 is here } @async private function test() { @await this.myAsyncFuncReturningVoid(); // line 264 is here...
Is it possible to make MySQL backend timezone aware? I set jdbc_connection_url_pattern like the following, but still all datetimes coming from DB backend are naive. ``` jdbc_connection_url_pattern = 'jdbc:mysql://%(HOST)s:%(PORT)s/%(NAME)s?zeroDateTimeBehavior=convertToNull&useTimezone=true&useLegacyDatetimeCode=true&noTimezoneConversionForTimeType=true&serverTimezone=Europe/Helsinki&noTimezoneConversionForDateType=true&useJDBCCompliantTimezoneShift=true' ```
### Is your feature request related to a problem? We are not able to get peer certificate when ClientResponseError is raised. ### Describe the solution you'd like try: async with...
## What do these changes do? These changes implement SSL certificate access functionality for ClientResponseError exceptions and all its subclasses. ## Are there changes in behavior for the user? No...