mirror of
				https://github.com/matrix-org/synapse.git
				synced 2025-11-04 10:11:05 +01:00 
			
		
		
		
	remove twisted deferral cruft
This commit is contained in:
		
							parent
							
								
									4262aba17b
								
							
						
					
					
						commit
						241e4e8687
					
				@ -244,7 +244,6 @@ class DataStore(RoomMemberStore, RoomStore,
 | 
			
		||||
 | 
			
		||||
        return [UserPresenceState(**row) for row in rows]
 | 
			
		||||
 | 
			
		||||
    @defer.inlineCallbacks
 | 
			
		||||
    def count_daily_users(self):
 | 
			
		||||
        """
 | 
			
		||||
        Counts the number of users who used this homeserver in the last 24 hours.
 | 
			
		||||
@ -264,10 +263,9 @@ class DataStore(RoomMemberStore, RoomStore,
 | 
			
		||||
            count, = txn.fetchone()
 | 
			
		||||
            return count
 | 
			
		||||
 | 
			
		||||
        ret = yield self.runInteraction("count_users", _count_users)
 | 
			
		||||
        defer.returnValue(ret)
 | 
			
		||||
        return self.runInteraction("count_users", _count_users)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    @defer.inlineCallbacks
 | 
			
		||||
    def count_r30_users(self):
 | 
			
		||||
        """
 | 
			
		||||
        Counts the number of 30 day retained users, defined as:-
 | 
			
		||||
@ -320,8 +318,7 @@ class DataStore(RoomMemberStore, RoomStore,
 | 
			
		||||
                results["ALL"], = txn.fetchone()
 | 
			
		||||
            return results
 | 
			
		||||
 | 
			
		||||
        ret = yield self.runInteraction("count_r30_users", _count_r30_users)
 | 
			
		||||
        defer.returnValue(ret)
 | 
			
		||||
        return self.runInteraction("count_r30_users", _count_r30_users)
 | 
			
		||||
 | 
			
		||||
    def get_users(self):
 | 
			
		||||
        """Function to reterive a list of users in users table.
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user