nulian

Results 17 comments of nulian

Could also be part of starting remote console overwriting the vm.args and sys.config. Using the read_only flag doesn't help because it won't use the already generated vm.args and sys.config. For...

It's also possible through tunneling which can be done without X11 You need to make a tunnel through port 4369 and the port in epmd -names If the server is...

If you rollback you will see the rollbacked version for a second and then it puts back like the previous data in the file I guess formatted from before the...

It is a pretty easy fix This below: ``` def expand_attrs_from_hash(opts) opts = ::ActiveRecord::PredicateBuilder.resolve_column_aliases(klass, opts) bv_len = bind_values.length tmp_opts, bind_values = create_binds(opts, bv_len) self.bind_values += bind_values attributes = @klass.send(:expand_hash_conditions_for_aggregates, tmp_opts)...

@jordan0day You sure your database wasn't in utf8mb4 had a problem like this while querying a binary. It works when the data is in a database with utf8 type. But...

He probably means hot upgrade releases where you do not stop the servers. But just upgrade the code. Was the first thing I noticed too when looking at this tool.

ecto 3.3.1 ecto_sql 3.3.2 db_connection 2.2.0

It does seem to fix test performance removing the unnamed statement flag. So I could do that to improve test performance. A bit weird that on my local machine I...