added long to GenericConfigurationItem

This commit is contained in:
Daniel Dakhno 2019-11-21 14:37:19 +01:00 committed by GitHub
parent a56d180531
commit 463e3d120d

View File

@ -167,6 +167,10 @@ public class ConfigurationPutRequest extends FilePutRequest {
this.value = (T) (Integer) buffer.getInt();
break;
}
case 8:{
this.value = (T) (Long) buffer.getLong();
break;
}
}
}
}